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