containsInt method

bool containsInt(
  1. int key
)

Implementation

bool containsInt(int key) {
  return value.containsKey(CborIntValue(key));
}