cookingPot static method

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

regular: cooking-pot thin: cooking-pot light: cooking-pot bold: cooking-pot fill: cooking-pot duotone: cooking-pot

Implementation

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