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