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