TestContainer constructor

const TestContainer({
  1. Key? key,
  2. required String message,
  3. Color color = Colors.blue,
  4. double padding = 16.0,
})

Implementation

const TestContainer({
  super.key,
  required this.message,
  this.color = Colors.blue,
  this.padding = 16.0,
});