textOutdent static method

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

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

Implementation

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