htmlFor property

String? get htmlFor

Implementation

String? get htmlFor => _getAttribute('for');
set htmlFor (String? value)

Implementation

set htmlFor(String? value) {
  _setAttribute('for', value);
}