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