OsrmLaneIndication.fromMap constructor
fromMap method to get the OsrmLaneIndication from a json map
Implementation
factory OsrmLaneIndication.fromMap(Map<String, dynamic> json) {
return OsrmLaneIndication(
valid: json['valid'],
indication: json['indication'],
);
}