getPendingCount static method

Future<int> getPendingCount()

Returns the number of operations currently waiting in the offline queue.

Implementation

static Future<int> getPendingCount() async {
  _ensure();
  return _provider!.getPendingCount();
}