isInterrupted method

Future<bool> isInterrupted()

Indicates whether the receiver has been interrupted.

Implementation

Future<bool> isInterrupted() async {
  return await _channel.$isInterrupted(this) as bool;
}