bugBeetle static method

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

regular: bug-beetle thin: bug-beetle light: bug-beetle bold: bug-beetle fill: bug-beetle duotone: bug-beetle

Implementation

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