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