parse<T, K2, V2> method
Parses the nested map at key using the provided converter.
Implementation
T parse<T, K2, V2>(K key, T Function(Map<K2, V2> json) converter) {
final raw = this[key];
final map = ConvertObjectImpl.toMap<K2, V2>(raw);
return converter.call(map);
}