JsonFullScreenView constructor

const JsonFullScreenView({
  1. Key? key,
  2. required dynamic data,
  3. bool showPretty = true,
})

Implementation

const JsonFullScreenView({
  super.key,
  required this.data,
  this.showPretty = true,
});