cookie static method

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

regular: cookie thin: cookie light: cookie bold: cookie fill: cookie duotone: cookie

Implementation

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