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