egg static method

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

regular: egg thin: egg light: egg bold: egg fill: egg duotone: egg

Implementation

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