operator [] method

String? operator [](
  1. PhoneNumberKey key
)
Gets or sets the phone number at the specified key. The key of the phone number to get or set.

Implementation

String? operator [](PhoneNumberKey key) {
  return this.Entries[key]!.PhoneNumber;
}