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