get method

T? get([
  1. Zone? contextZone
])

Gets the value associated with the contextZone.

Implementation

T? get([Zone? contextZone]) {
  contextZone ??= this.contextZone;
  var t = _values[contextZone];
  return t;
}