DebugInfoEntry constructor

const DebugInfoEntry({
  1. Key? key,
  2. required Widget title,
  3. required Future<List<DebugPropertyNode>> data,
})

Implementation

const DebugInfoEntry({
  super.key,
  required this.title,
  required this.data,
});