copyWith method

SetVideoChatTitle copyWith({
  1. int? groupCallId,
  2. String? title,
})

Implementation

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