Widget debugContainer([Color color = Colors.red]) { if (!kDebugContainerVisible) { return this; } return Container( color: color, child: this, ); }