copyWith method

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

Implementation

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