ManualWidgetTesterFoldableRegion constructor

const ManualWidgetTesterFoldableRegion({
  1. Key? key,
  2. required Widget child,
  3. required String heading,
  4. bool isIndented = false,
  5. bool isInitiallyFolded = false,
})

Implementation

const ManualWidgetTesterFoldableRegion({
  super.key,
  required this.child,
  required this.heading,
  this.isIndented = false,
  this.isInitiallyFolded = false,
});