copyWith method

AssignUserRequest copyWith({
  1. String? userId,
})

Implementation

AssignUserRequest copyWith({String? userId}) {
  return AssignUserRequest(userId: userId ?? this.userId);
}