arrowFatLinesRight static method

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

regular: arrow-fat-lines-right thin: arrow-fat-lines-right light: arrow-fat-lines-right bold: arrow-fat-lines-right fill: arrow-fat-lines-right duotone: arrow-fat-lines-right

Implementation

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