JsonNodeWidget constructor

const JsonNodeWidget({
  1. Key? key,
  2. required String keyName,
  3. required dynamic value,
  4. required int depth,
  5. bool isRoot = false,
})

Implementation

const JsonNodeWidget({
  super.key,
  required this.keyName,
  required this.value,
  required this.depth,
  this.isRoot = false,
});