NawahConnStateListener constructor

NawahConnStateListener({
  1. required bool filter(
    1. ConnState connState
    ),
  2. required void callable(
    1. Nawah nawah,
    2. ConnState connState
    ),
  3. bool once = false,
  4. String? tag,
})

Implementation

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