copyWith method

LoadGroupCallParticipants copyWith({
  1. int? groupCallId,
  2. int? limit,
})

Implementation

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