alignBottomSimple static method

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

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

Implementation

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