copyWith method

GetGroupCallParticipants copyWith({
  1. InputGroupCall? inputGroupCall,
  2. int? limit,
})

Implementation

GetGroupCallParticipants copyWith({
  InputGroupCall? inputGroupCall,
  int? limit,
}) => GetGroupCallParticipants(
  inputGroupCall: inputGroupCall ?? this.inputGroupCall,
  limit: limit ?? this.limit,
);