noteBlank static method

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

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

Implementation

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