isRefreshing method

Future<bool> isRefreshing()

Returns whether a refresh operation has been triggered and is in progress.

Implementation

Future<bool> isRefreshing() async {
  Map<String, dynamic> args = <String, dynamic>{};
  return await _channel?.invokeMethod('isRefreshing', args);
}