copyWith method

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

Implementation

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