DebugRainbow constructor

DebugRainbow({
  1. required TileWidget child,
  2. double opacity = 1,
})

Implementation

DebugRainbow({
  required this.child,
  this.opacity = 1,
}) : assert(opacity >= 0 && opacity <= 1);