excludeSquare static method

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

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

Implementation

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