containsKey method

B containsKey(
  1. dynamic key, {
  2. String? message,
})

Validate that the map contains the specified key.

Implementation

B containsKey(key, {String? message}) {
  return add(esk.containsKey(key), message: message ?? 'A value that contains key: $key');
}