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