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