bowlingBall static method

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

regular: bowling-ball thin: bowling-ball light: bowling-ball bold: bowling-ball fill: bowling-ball duotone: bowling-ball

Implementation

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