boxArrowUp static method

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

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

Implementation

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