textHTwo static method

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

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

Implementation

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