bug static method

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

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

Implementation

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