containsKey method
- dynamic key, {
- 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');
}
Validate that the map contains the specified key.
B containsKey(key, {String? message}) {
return add(esk.containsKey(key), message: message ?? 'A value that contains key: $key');
}