Description constructor

Description({
  1. String? type,
  2. String? value,
})

Default constructor for the Description class

Implementation

Description({
  this.type,
  this.value,
});