notification static method

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

regular: notification thin: notification light: notification bold: notification fill: notification duotone: notification

Implementation

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