findTypeOrNull<T extends Object> method
Returns the object value for the type T, allows null or missing values.
Implementation
@override
T? findTypeOrNull<T extends Object>() {
return findModelWithCustomKeyOrNull(T.toString());
}