MapMovedEvent constructor

MapMovedEvent({
  1. required LatLng latLng,
  2. String? title,
  3. String? address,
  4. required double zoom,
  5. required LatLngBounds bounds,
  6. required MapMoveEventType type,
})

Implementation

MapMovedEvent({
  required this.latLng,
  this.title,
  this.address,
  required this.zoom,
  required this.bounds,
  required this.type,
});