textIndent static method

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

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

Implementation

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