imageSquare static method

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

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

Implementation

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