cheese static method

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

regular: cheese thin: cheese light: cheese bold: cheese fill: cheese duotone: cheese

Implementation

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