decodeBool method

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

Decodes the data for the given key or id as a boolean value.

Implementation

@override
bool decodeBool(String key, {int? id}) {
  var d = decoders[key] ?? decoders[id];
  return d!.clone().decodeBool();
}