getContentWidget static method
Implementation
static getContentWidget(dynamic content, JsonViewerThemeData theme) {
if (content is List) {
return JsonArrayViewer(
content,
notRoot: true,
theme: theme,
);
} else {
return JsonObjectViewer(
content,
notRoot: true,
theme: theme,
);
}
}