horse static method

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

regular: horse thin: horse light: horse bold: horse fill: horse duotone: horse

Implementation

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