copyWith method

SandboxTransferSimulateResponse copyWith({
  1. String? requestId,
})

Implementation

SandboxTransferSimulateResponse copyWith({String? requestId}) {
  return SandboxTransferSimulateResponse(
      requestId: requestId ?? this.requestId);
}