copyWith method

SendGroupCallMessage copyWith({
  1. int? groupCallId,
  2. FormattedText? text,
  3. int? paidMessageStarCount,
})

Implementation

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