tote static method

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

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

Implementation

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