id property

  1. @HostBinding.new('attr.id')
String get id

The id of the element.

Implementation

@HostBinding('attr.id')
String get id => _customAriaHandling ? '' : (_id ?? _generatedId);
  1. @Input.new()
set id (String id)

Implementation

@Input()
set id(String id) {
  _id = id;
}