pendingCalls property

Future<List<OdooRpcCall>> pendingCalls

Returns list of calls that has to be done when online

Implementation

Future<List<OdooRpcCall>> get pendingCalls async {
  return await callsLock
      .protectRead<List<OdooRpcCall>>(() async => _getPendingCalls());
}