cleanName property

String cleanName

the name of the field, removing all _

Implementation

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