escalatorUp static method

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

regular: escalator-up thin: escalator-up light: escalator-up bold: escalator-up fill: escalator-up duotone: escalator-up

Implementation

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