Entry constructor

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

Implementation

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