asMap<E, F> method
For using this method, We're assuming it is safe to transform to utf8 Strings. Return the bytes as a Map decoded using jsonDecode(). Same as as
Implementation
Map<E, F> asMap<E, F>(){
assert(_isStream != null && !_isStream);
return jsonDecode(asString()) as Map<E, F>;
}