toMap method

  1. @override
Map<String, Object?> toMap()
override

model -> map

Implementation

@override
Map<String, Object?> toMap() {
  return Map.from(super.toMap())
    ..addAll({
      'suggestAddrResult': this.suggestAddrResult?.toMap(),
      'routes': this.routes?.map((e) => e.toMap()).toList(),
      'totalRoutes': this.totalRoutes,
      'taxiInfo': this.taxiInfo?.toMap(),
      'origin': this.origin?.toMap(),
      'destination': this.destination?.toMap()
    });
}