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