alignLeftSimple static method

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

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

Implementation

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