JsonConfig constructor

const JsonConfig({
  1. Key? key,
  2. Widget? child,
  3. JsonConfigData? data,
})

configuration of json view

Implementation

const JsonConfig({
  Key? key,
  Widget? child,
  this.data,
}) : super(key: key, child: child ?? const SizedBox.shrink());