copyWith method
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,
);