musicNotesSimple static method

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

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

Implementation

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