InvalidDictionaryKeyError constructor

InvalidDictionaryKeyError(
  1. String invalidValue,
  2. String message, {
  3. String name = "key",
})

Consturct InvalidDictionaryKeyError with parameter name and message.

Implementation

InvalidDictionaryKeyError(this.invalidValue, this.message,
    {this.name = "key"})
    : super._();