operator [] method

dynamic operator [](
  1. String key
)

Implementation

operator [](String key) {
  if (result != null && result!.containsKey(key)) return result![key];
  return null;
}