JsonViewBody constructor
const
JsonViewBody({
- Key? key,
- required dynamic json,
- JsonColorScheme? colorScheme,
- JsonStyleScheme? styleScheme,
- bool? animation,
- EdgeInsets? itemPadding,
- Duration? animationDuration,
- Curve? animationCurve,
- int? gap,
use with caution, it will cause performance issue when json root items is too large
Implementation
const JsonViewBody({
super.key,
required this.json,
this.colorScheme,
this.styleScheme,
this.animation,
this.itemPadding,
this.animationDuration,
this.animationCurve,
this.gap,
});