textHOne static method

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

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

Implementation

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