copyWith method

SandboxItemResetLoginResponse copyWith({
  1. bool? resetLogin,
  2. String? requestId,
})

Implementation

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