MapEventRotate constructor

const MapEventRotate({
  1. required String? id,
  2. required double currentRotation,
  3. required double targetRotation,
  4. required MapEventSource source,
  5. required LatLng center,
  6. required double zoom,
})

Implementation

const MapEventRotate({
  required this.id,
  required this.currentRotation,
  required this.targetRotation,
  required super.source,
  required super.center,
  required super.zoom,
});