HttpKeyValuePair constructor

const HttpKeyValuePair({
  1. required String key,
  2. required String value,
  3. bool isUsed = true,
})

Implementation

const HttpKeyValuePair({
  required this.key,
  required this.value,
  this.isUsed = true,
});