basketball static method

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

regular: basketball thin: basketball light: basketball bold: basketball fill: basketball duotone: basketball

Implementation

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