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