textAlignJustify static method

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

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

Implementation

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