trayArrowUp static method

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

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

Implementation

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