toMap method

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

model -> map

Implementation

@override
Map<String, Object> toMap() {
  return {
    "id": this.getId(),
    'image': this.image,
    'coordinate': this.coordinate.toMap(),
    'yOffset': this.yOffset,
    'isAddWithBitmapDescriptor': this.isAddWithBitmap
  };
}