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