certificate static method

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

regular: certificate thin: certificate light: certificate bold: certificate fill: certificate duotone: certificate

Implementation

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