note static method

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

regular: note thin: note light: note bold: note fill: note duotone: note

Implementation

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