KeyValuePair constructor

KeyValuePair({
  1. String? key,
  2. int? value,
})

Implementation

KeyValuePair({
  this.key,
  this.value,
});