id property

String get id

Implementation

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

Implementation

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