alignLeft static method

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

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

Implementation

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