medal static method

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

regular: medal thin: medal light: medal bold: medal fill: medal duotone: medal

Implementation

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