DbAdapter<T> constructor

DbAdapter<T>({
  1. DbAdapterState? state,
  2. required FromJsonFunc<T> fromJson,
  3. required String tableName,
  4. required List<RepoPath> paths,
  5. bool hasRemotePriority = false,
})

Implementation

DbAdapter({
  this.state,
  required this.fromJson,
  required this.tableName,
  required this.paths,
  this.hasRemotePriority = false,
});