DbAdapterState constructor

DbAdapterState({
  1. RemoteRepo? remoteRepo,
  2. LocalDb? localDb,
  3. bool bypassRemote = false,
  4. bool bypassLocal = true,
  5. bool isOnline = true,
})

Implementation

DbAdapterState({
  this.remoteRepo,
  this.localDb,
  this.bypassRemote = false,
  this.bypassLocal = true,
  this.isOnline = true,
});