id property

String id

Implementation

String get id {
  final result = attributes['id'];
  return result ?? '';
}
void id=(String value)

Implementation

set id(String value) {
  attributes['id'] = value;
}