trophy static method

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

regular: trophy thin: trophy light: trophy bold: trophy fill: trophy duotone: trophy

Implementation

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