arrowFatLinesUp static method

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

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

Implementation

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