rotation property

double rotation

Current rotation degrees of this map.

Implementation

double get rotation => _rotation;
void rotation=(dynamic rotation)

Implementation

set rotation(rotation) {
  _rotation = rotation;
  _angle = degToRadian(_rotation);
  _onAngleChanged?.call();
  _callChangedListeners();
  notifyListeners();
}