toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final name = this.name;
final routeId = this.routeId;
final routeLocation = this.routeLocation;
final routeProjectNumber = this.routeProjectNumber;
final routeType = this.routeType;
return {
'name': ?name,
'routeId': ?routeId,
'routeLocation': ?routeLocation,
'routeProjectNumber': ?routeProjectNumber,
'routeType': ?routeType,
};
}