value property

FontWeight get value

Implementation

FontWeight get value {
  switch (this) {
    case AppFontWeight.light:
      return FontWeight.w300;
    case AppFontWeight.normal:
      return FontWeight.w400;
    case AppFontWeight.bold:
      return FontWeight.w700;
    case AppFontWeight.large:
      return FontWeight.w800;
    case AppFontWeight.medium:
      return FontWeight.w500;
    case AppFontWeight.semibold:
      return FontWeight.w600;
    default:
      return FontWeight.w500;
  }
}