RouteDestinations.fromJson constructor
RouteDestinations.fromJson(
- Map json_
Implementation
RouteDestinations.fromJson(core.Map json_)
: this(
destinationIds: (json_['destinationIds'] as core.List?)
?.map((value) => value as core.String)
.toList(),
propagateService: json_['propagateService'] as core.bool?,
);