handbagSimple static method

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

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

Implementation

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