unwrapMap<K, V> method
Implementation
@override
Map<K, V> unwrapMap<K, V>(Mapping dict) {
// if (dict is Mapper) {
// dict = dict.toMap();
// }
Map<K, V> result = {};
dict.forEach((key, value) {
result[key] = unwrap(value);
});
return result;
}