toteSimple static method

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

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

Implementation

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