note static method
regular:
thin:
light:
bold:
fill:
duotone:
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;
}
}