TextComponentDetail constructor

TextComponentDetail({
  1. required String text,
  2. String? id,
  3. String? type,
})

Implementation

TextComponentDetail({
  required this.text,
  this.id,
  this.type,
});