alignRightSimple static method

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

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

Implementation

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