seal static method

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

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

Implementation

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