cow static method

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

regular: cow thin: cow light: cow bold: cow fill: cow duotone: cow

Implementation

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