arrowFatLineRight static method

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

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

Implementation

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