percentLabel property

String get percentLabel

Implementation

String get percentLabel {
  switch (this) {
    case AppFontSize.small:
      return '85%';
    case AppFontSize.medium:
      return '100%';
    case AppFontSize.large:
      return '125%';
    case AppFontSize.extraLarge:
      return '150%';
  }
}