copyWith method
Implementation
SetGroupCallTitle copyWith({
int? groupCallId,
String? title,
}) => SetGroupCallTitle(
groupCallId: groupCallId ?? this.groupCallId,
title: title ?? this.title,
);
SetGroupCallTitle copyWith({
int? groupCallId,
String? title,
}) => SetGroupCallTitle(
groupCallId: groupCallId ?? this.groupCallId,
title: title ?? this.title,
);