copyWith method

UserCreateResponse copyWith({
  1. String? userToken,
  2. String? userId,
  3. String? requestId,
})

Implementation

UserCreateResponse copyWith(
    {String? userToken, String? userId, String? requestId}) {
  return UserCreateResponse(
      userToken: userToken ?? this.userToken,
      userId: userId ?? this.userId,
      requestId: requestId ?? this.requestId);
}