CrJsonRecyclerWidget constructor

const CrJsonRecyclerWidget({
  1. required JsonRecyclerController jsonController,
  2. required dynamic json,
  3. Key? key,
  4. bool rootExpanded = false,
})

Implementation

const CrJsonRecyclerWidget({
  required this.jsonController,
  required this.json,
  Key? key,
  this.rootExpanded = false,
}) : super(key: key);