NawahAuthStateListener constructor

NawahAuthStateListener({
  1. required bool filter(
    1. AuthState authState
    ),
  2. required void callable(
    1. Nawah nawah,
    2. AuthState authState
    ),
  3. bool once = false,
  4. String? tag,
})

Implementation

NawahAuthStateListener({
  required this.filter,
  required this.callable,
  this.once = false,
  this.tag,
});