label property

String get label

Implementation

String get label {
  switch (this) {
    case AppFontSize.small:
      return 'Small';
    case AppFontSize.medium:
      return 'Medium';
    case AppFontSize.large:
      return 'Large';
    case AppFontSize.extraLarge:
      return 'Extra Large';
  }
}