bagSimple static method

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

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

Implementation

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