resetEntityTypeResolver function
dynamic
resetEntityTypeResolver()
Resets the type resolver to the default.
A type resolver is a function that takes a type and returns a string representing that type, to be used for serialization/deserialization. It is only mandatory in minified environments like Flutter web, where entity names are mangled.
If no type resolver is registered for a given type, or the resolver returns null, the default type resolver will be used.
Implementation
resetEntityTypeResolver() {
_typeResolver = null;
}