arrowUpLeft static method

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

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

Implementation

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