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