createRepositoryAdapter<O> method
Implementation
DBRepositoryAdapter<O>? createRepositoryAdapter<O>(String name,
{String? tableName, Type? type}) {
if (isClosed) {
return null;
}
return _repositoriesAdapters.putIfAbsent(
name, () => instantiateRepositoryAdapter<O>(name, tableName, type))
as DBRepositoryAdapter<O>;
}