TomlObjectViewer constructor
const
TomlObjectViewer(
- Map<
String, dynamic> data, { - Key? key,
- bool notRoot = false,
- required TomlViewerConfig config,
Creates a TomlObjectViewer widget.
The data
parameter contains the TOML data to be displayed.
The notRoot
parameter indicates whether the object is not the root object.
Implementation
const TomlObjectViewer(this.data,
{super.key, this.notRoot = false, required this.config});