eggCrack static method

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

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

Implementation

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