findIdOrNull<T extends Object> method

  1. @override
T? findIdOrNull<T extends Object>(
  1. String id
)
inherited

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);
}