byMap<T> method
Implementation
T? byMap<T>(String key, T? Function(dynamic rawValue) onDeserialize, {T? defaultValue}) {
if (this[key] == null) return defaultValue;
return onDeserialize.call(this[key]) ?? defaultValue;
}
T? byMap<T>(String key, T? Function(dynamic rawValue) onDeserialize, {T? defaultValue}) {
if (this[key] == null) return defaultValue;
return onDeserialize.call(this[key]) ?? defaultValue;
}