queue static method

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

regular: queue thin: queue light: queue bold: queue fill: queue duotone: queue

Implementation

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