exclamationMark static method

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

regular: exclamation-mark thin: exclamation-mark light: exclamation-mark bold: exclamation-mark fill: exclamation-mark duotone: exclamation-mark

Implementation

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