copyWith method

GetUserFullInfo copyWith({
  1. int? userId,
})

Implementation

GetUserFullInfo copyWith({
  int? userId,
}) => GetUserFullInfo(
  userId: userId ?? this.userId,
);