alignBottom static method

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

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

Implementation

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