TextEntity constructor

TextEntity({
  1. String? extra,
  2. int? client_id,
  3. int32? offset,
  4. int32? length,
  5. TextEntityType? type,
})

Implementation

TextEntity({
  super.extra,
  super.client_id,
  this.offset,
  this.length,
  this.type,
});