UJsonViewer constructor

const UJsonViewer({
  1. required String jsonString,
  2. Key? key,
  3. double fontSize = 13,
  4. EdgeInsets padding = const EdgeInsets.all(12),
})

Implementation

const UJsonViewer({
  required this.jsonString,
  super.key,
  this.fontSize = 13,
  this.padding = const EdgeInsets.all(12),
});