copyWith method

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

Implementation

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