JsonInspector constructor

const JsonInspector({
  1. Key? key,
  2. required dynamic jsonData,
  3. bool initiallyExpanded = false,
  4. TextStyle? keyStyle,
  5. TextStyle? valueStyle,
})

Creates a JsonInspector widget.

Implementation

const JsonInspector({
  super.key,
  required this.jsonData,
  this.initiallyExpanded = false,
  this.keyStyle,
  this.valueStyle,
});