stack static method

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

regular: stack thin: stack light: stack bold: stack fill: stack duotone: stack

Implementation

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