copyWith method

BanGroupCallParticipants copyWith({
  1. int? groupCallId,
  2. List<int>? userIds,
})

Implementation

BanGroupCallParticipants copyWith({int? groupCallId, List<int>? userIds}) =>
    BanGroupCallParticipants(
      groupCallId: groupCallId ?? this.groupCallId,
      userIds: userIds ?? this.userIds,
    );