intersectThree static method

PhosphorIconData intersectThree([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

regular: intersect-three thin: intersect-three light: intersect-three bold: intersect-three fill: intersect-three duotone: intersect-three

Implementation

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