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