error property

String? get error

Implementation

String? get error => _error;
  1. @Input()
set error (String? error)

Error to be displayed.

Higher precendent than all other errors which may be on this input.

Implementation

@Input()
set error(String? error) {
  _error = error;
  updateBottomPanelState();
}