ensureJsonDecodeToIterable function

Iterable ensureJsonDecodeToIterable(
  1. dynamic json
)

Implementation

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