AppState constructor

const AppState({
  1. required bool isLoading,
  2. required Object? loginError,
  3. required String? loginHandle,
  4. required Iterable<String>? fetchedNotes,
})

Implementation

const AppState({
  required this.isLoading,
  required this.loginError,
  required this.loginHandle,
  required this.fetchedNotes,
});