operator + method

ContextKey operator +(
  1. String other
)

Implementation

ContextKey operator +(String other) {
  assert(!other.contains('.'));
  return ContextKey('$path.$other');
}