golf static method

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

regular: golf thin: golf light: golf bold: golf fill: golf duotone: golf

Implementation

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