cake static method

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

regular: cake thin: cake light: cake bold: cake fill: cake duotone: cake

Implementation

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