ensureJsonDecodeToIterable function
Implementation
Iterable<dynamic> ensureJsonDecodeToIterable(dynamic json) {
if (json is Iterable<dynamic>) return json;
return convert.jsonDecode('$json');
}
Iterable<dynamic> ensureJsonDecodeToIterable(dynamic json) {
if (json is Iterable<dynamic>) return json;
return convert.jsonDecode('$json');
}