findIdOrNull<T extends Object> method
Returns the object value for the specified String key, allows null or missing values.
Implementation
@override
T? findIdOrNull<T extends Object>(String id) {
return findModelWithCustomKeyOrNull(id);
}