textHFour static method

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

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

Implementation

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