circleNotch static method

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

regular: circle-notch thin: circle-notch light: circle-notch bold: circle-notch fill: circle-notch duotone: circle-notch

Implementation

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