AnimationId constructor

const AnimationId({
  1. AnimatedMoveId moveId = AnimatedMoveId.started,
  2. required LatLng destLocation,
  3. required double destZoom,
  4. String? customId,
})

Implementation

const AnimationId({
  this.moveId = AnimatedMoveId.started,
  required this.destLocation,
  required this.destZoom,
  this.customId,
});