imagesSquare static method

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

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

Implementation

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