stackSimple static method

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

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

Implementation

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