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