contains method

bool contains(
  1. String keys
)

Whether this RuntimeConfigure contains the given keys.

Implementation

bool contains(String keys) {
  final k = keys.trimDots();
  return _storage.keys.any((e) => e == k || e.startsWith(k));
}