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