maxLength property

num get maxLength

Sets or retrieves the maximum number of characters that the user can enter in a text control.

Implementation

_i2.num get maxLength => _i4.getProperty(
      this,
      'maxLength',
    );
set maxLength (num value)

Implementation

set maxLength(_i2.num value) {
  _i4.setProperty(
    this,
    'maxLength',
    value,
  );
}