errorMsg property

String? get errorMsg

Implementation

String? get errorMsg => _errorMsg;
  1. @Input()
set errorMsg (String? msg)

The error msg to be shown on the input if it has more than maxCount characters.

Implementation

@Input()
set errorMsg(String? msg) {
  _errorMsg = msg;
  updateBottomPanelState();
}