Title constructor

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

Default constructor for the Title class

Implementation

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