BMFInfoWindow.fromMap constructor Null safety

BMFInfoWindow.fromMap(
  1. Map map
)

map => BMFInfoWindow

Implementation

BMFInfoWindow.fromMap(Map map) {
  _id = map['id'];
  image = map['image'];
  coordinate = BMFCoordinate.fromMap(map['coordinate']);
  yOffset = map['yOffset'];
  isAddWithBitmap = map['isAddWithBitmapDescriptor'];
}