id property

Unique identifier. Must be unique amongst all the ids, and contain at least one character.

Implementation

@override
String? get id =>
    (props[_$key__id___$UbiquitousDomPropsMixin] ?? null) as String?;
  1. @override
void id=(String? value)

Unique identifier. Must be unique amongst all the ids, and contain at least one character.

Implementation

@override
set id(String? value) => props[_$key__id___$UbiquitousDomPropsMixin] = value;