Text constructor

const Text({
  1. required String text,
  2. dynamic extra,
  3. int? clientId,
})

Contains some text

Implementation

const Text({
  required this.text,
  this.extra,
  this.clientId,
});