handbag static method

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

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

Implementation

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