dog static method

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

regular: dog thin: dog light: dog bold: dog fill: dog duotone: dog

Implementation

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