JsonView constructor

JsonView({
  1. dynamic json,
  2. bool? isShowAll = false,
  3. double fontSize = 14,
})

Implementation

JsonView({
  this.json,
  this.isShowAll = false,
  this.fontSize = 14,
});