copyWith method
SendGroupCallMessage
copyWith({
- int? groupCallId,
- FormattedText? text,
- int? paidMessageStarCount,
Implementation
SendGroupCallMessage copyWith({
int? groupCallId,
FormattedText? text,
int? paidMessageStarCount,
}) => SendGroupCallMessage(
groupCallId: groupCallId ?? this.groupCallId,
text: text ?? this.text,
paidMessageStarCount: paidMessageStarCount ?? this.paidMessageStarCount,
);