id property Null safety
Implementation
String get id {
final result = attributes['id'];
return result ?? '';
}
Implementation
set id(String value) {
attributes['id'] = '$value';
}
String get id {
final result = attributes['id'];
return result ?? '';
}
set id(String value) {
attributes['id'] = '$value';
}