KeyValueModel constructor

KeyValueModel({
  1. String key = '',
  2. String value = '',
  3. String desc = '',
  4. String flag = '',
  5. int valueInt = -1,
  6. bool selected = false,
})

Implementation

KeyValueModel({
  this.key = '',
  this.value = '',
  this.desc = '',
  this.flag = '',
  this.valueInt = -1,
  this.selected = false,
});