id property

  1. @override
String? get id

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
set 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;