containsKey method

  1. @override
bool containsKey({
  1. String? key,
})

return true if the the container contains a key

Implementation

@override
bool containsKey({
  String? key,
}) =>
    container.containsKey(key);