ViewChangedEvent constructor

ViewChangedEvent({
  1. Iterable<IObservable<BaseEvent>> changes = const [],
  2. required ViewStatus status,
  3. String? errorMessage,
  4. String? reason,
})

Implementation

ViewChangedEvent({
  this.changes = const [],
  required this.status,
  this.errorMessage,
  this.reason,
});