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