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