KeyValue constructor

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

Implementation

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