arrowFatLineUp static method

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

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

Implementation

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