decodeObjectOrNull<T> abstract method

T? decodeObjectOrNull<T>(
  1. String key, {
  2. int? id,
  3. Decodable<T>? using,
})

Decodes the data for the given key or id as a nullable object of type T.

When the data is not null, this behaves like decodeObject.

Implementation

T? decodeObjectOrNull<T>(String key, {int? id, Decodable<T>? using});