textAlignRight static method

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

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

Implementation

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