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