intersectSquare static method

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

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

Implementation

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