intersection static method

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

regular: intersection thin: intersection light: intersection bold: intersection fill: intersection duotone: intersection

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;
  }
}