arrowFatRight static method

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

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

Implementation

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