textAlignLeft static method

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

regular: text-align-left thin: text-align-left light: text-align-left bold: text-align-left fill: text-align-left duotone: text-align-left

Implementation

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