footprints static method

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

regular: footprints thin: footprints light: footprints bold: footprints fill: footprints duotone: footprints

Implementation

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