isAnimationInProgress property

bool get isAnimationInProgress

Check if there is an animation in progress.

Returns

  • True if there is an animation in progress, false otherwise.

Throws

  • An exception if it fails.

Implementation

bool get isAnimationInProgress {
  final OperationResult val = objectMethod(
    _pointerId,
    'MapView',
    'isAnimationInProgress',
  );

  return val['result'];
}