isPaused method

Future<bool> isPaused()

Implementation

Future<bool> isPaused() async {
  final delegate = _delegate;

  if (delegate == null) {
    return false;
  }

  return delegate.isPaused();
}