Description constructor

Description({
  1. String? text,
  2. String? type,
  3. bool? isBold,
  4. List<SubDescription>? subDescriptions,
})

Implementation

Description({
  this.text,
  this.type,
  this.isBold,
  this.subDescriptions,
});