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