textHFive static method

PhosphorIconData textHFive([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

regular: text-h-five thin: text-h-five light: text-h-five bold: text-h-five fill: text-h-five duotone: text-h-five

Implementation

static PhosphorIconData textHFive(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.textHFive;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.textHFive;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.textHFive;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.textHFive;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.textHFive;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.textHFive;
  }
}