Vehicle.fromJson constructor Null safety

Vehicle.fromJson(
  1. Map json
)

Implementation

Vehicle.fromJson(Map json) {
  id = json['id'];
  routeWay = RouteWay.fromJson(json["route_way"]);
  name = json['name'];
}