copyWith method

FormattedText copyWith({
  1. String? text,
  2. List<TextEntity>? entities,
  3. dynamic extra,
  4. int? clientId,
})

Implementation

FormattedText copyWith({
  String? text,
  List<TextEntity>? entities,
  dynamic extra,
  int? clientId,
}) => FormattedText(
  text: text ?? this.text,
  entities: entities ?? this.entities,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);