offline method

DbAdapter<T> offline()

Implementation

DbAdapter<T> offline() {
  final _state = (state as DbAdapterState).copyWith(bypassRemote: true);
  return copyWith(state: _state);
}