textT static method

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

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

Implementation

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