toMap method Null safety

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

Implementation

@override
Map<String, Object?> toMap() {
  return {
    'desc': this.desc,
    'distance': this.distance,
    'duration': this.duration,
    'perKMPrice': this.perKMPrice,
    'startPrice': this.startPrice,
    'totalPrice': this.totalPrice
  };
}