OsrmLane.fromMap constructor
Implementation
factory OsrmLane.fromMap(Map<String, dynamic> json) {
return OsrmLane(
valid: json['valid'],
indications: json['indications'] != null
? (json['indications'] as List).map((e) {
if (e is String) return OsrmLaneIndication(indication: e);
return OsrmLaneIndication.fromMap(e);
}).toList()
: null,
);
}