soccerBall static method

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

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

Implementation

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