copyWith method

EndGroupCallRecording copyWith({
  1. int? groupCallId,
})

Implementation

EndGroupCallRecording copyWith({
  int? groupCallId,
}) =>
    EndGroupCallRecording(
      groupCallId: groupCallId ?? this.groupCallId,
    );