getContentWidget static method
Implementation
static StatefulWidget getContentWidget(dynamic content) {
if (content is List) {
return JsonArrayViewerWidget(content, notRoot: true);
} else {
return JsonView(content, notRoot: true);
}
}
static StatefulWidget getContentWidget(dynamic content) {
if (content is List) {
return JsonArrayViewerWidget(content, notRoot: true);
} else {
return JsonView(content, notRoot: true);
}
}