cleanName property
String
get
cleanName
the name of the field, removing all _
Implementation
String get cleanName {
return name.replaceAll(RegExp('^_*'), '');
}
the name of the field, removing all _
String get cleanName {
return name.replaceAll(RegExp('^_*'), '');
}