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