copyWith method
Implementation
SandboxItemResetLoginResponse copyWith(
{bool? resetLogin, String? requestId}) {
return SandboxItemResetLoginResponse(
resetLogin: resetLogin ?? this.resetLogin,
requestId: requestId ?? this.requestId);
}