sealPercent static method

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

regular: seal-percent thin: seal-percent light: seal-percent bold: seal-percent fill: seal-percent duotone: seal-percent

Implementation

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