file property
AppIconData
get
file
regular:
thin:
light:
bold:
fill:
duotone:
Implementation
static AppIconData get file {
switch (AppIcons.defaultStyle) {
case AppIconsStyle.regular:
return AppIconsRegular.file;
case AppIconsStyle.thin:
return AppIconsThin.file;
case AppIconsStyle.light:
return AppIconsLight.file;
case AppIconsStyle.bold:
return AppIconsBold.file;
case AppIconsStyle.fill:
return AppIconsFill.file;
case AppIconsStyle.duotone:
return AppIconsDuotone.file;
}
}