FormBlocObserver constructor

FormBlocObserver({
  1. bool notifyOnFieldBlocCreate = false,
  2. bool notifyOnFieldBlocChange = false,
  3. bool notifyOnFieldBlocError = true,
  4. bool notifyOnFieldBlocClose = false,
  5. bool notifyOnFormBlocCreate = false,
  6. bool notifyOnFormBlocChange = false,
  7. bool notifyOnFormBlocError = true,
  8. bool notifyOnFormBlocClose = false,
  9. required BlocObserver child,
})

Implementation

FormBlocObserver({
  this.notifyOnFieldBlocCreate = false,
  this.notifyOnFieldBlocChange = false,
  this.notifyOnFieldBlocError = true,
  this.notifyOnFieldBlocClose = false,
  this.notifyOnFormBlocCreate = false,
  this.notifyOnFormBlocChange = false,
  this.notifyOnFormBlocError = true,
  this.notifyOnFormBlocClose = false,
  required this.child,
});