findTypeOrNull<T extends Object> method

  1. @override
T? findTypeOrNull<T extends Object>()
inherited

Returns the object value for the type T, allows null or missing values.

Implementation

@override
T? findTypeOrNull<T extends Object>() {
  return findModelWithCustomKeyOrNull(T.toString());
}