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