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