WIndentedJson constructor

const WIndentedJson({
  1. Key? key,
  2. required Map data,
  3. TextStyle? style,
})

Implementation

const WIndentedJson({
  super.key,
  required this.data,
  this.style,
});