operator [] method

String? operator [](
  1. String key
)

Implementation

String? operator [](String key) {
  parse();

  return _parsed![key];
}