NotificationsRepository constructor

NotificationsRepository(
  1. NotificationsDatasource _datasource,
  2. AuthRepository _auth
)

UI state control for notifications.

Implementation

NotificationsRepository(this._datasource, this._auth) : super(AsyncValue.loading()) {
  watchAsync(_auth);
}