fingerprint static method

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

regular: fingerprint thin: fingerprint light: fingerprint bold: fingerprint fill: fingerprint duotone: fingerprint

Implementation

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