textH static method

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

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

Implementation

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