RepositoryCubit<T, R> constructor

RepositoryCubit<T, R>(
  1. R repository
)

Creates a new RepositoryCubit with the given repository

Implementation

RepositoryCubit(R repository) : super() {
  initRepository(repository);
}