id property

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

The id of the element.

Implementation

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

Implementation

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