arrowFatUp static method

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

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

Implementation

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