pawPrint static method

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

regular: paw-print thin: paw-print light: paw-print bold: paw-print fill: paw-print duotone: paw-print

Implementation

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