copyWith method

  1. @override
ChatEventVideoChatEnded copyWith({
  1. int? groupCallId,
})
override

Implementation

@override
ChatEventVideoChatEnded copyWith({
  int? groupCallId,
}) =>
    ChatEventVideoChatEnded(
      groupCallId: groupCallId ?? this.groupCallId,
    );