decodeIsNull method

  1. @override
bool decodeIsNull(
  1. String key, {
  2. int? id,
})
override

Checks if the data for the given key or id is null.

Implementation

@override
bool decodeIsNull(String key, {int? id}) {
  return _value.containsKey(key) && _value[key] == null;
}