cubeTransparent static method

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

regular: cube-transparent thin: cube-transparent light: cube-transparent bold: cube-transparent fill: cube-transparent duotone: cube-transparent

Implementation

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