cleanName property

String get cleanName

the name of the field, removing all _

Implementation

String get cleanName {
  return name.replaceAll(RegExp('^_*'), '');
}