Default constructor

Default({
  1. String? id,
  2. String? name,
  3. String? value,
  4. String? label,
})

Implementation

Default({
  this.id,
  this.name,
  this.value,
  this.label,
});