musicNoteSimple static method

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

regular: music-note-simple thin: music-note-simple light: music-note-simple bold: music-note-simple fill: music-note-simple duotone: music-note-simple

Implementation

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