copyWith method
DepositSwitchAltCreateRequest
copyWith({
- String? clientId,
- String? secret,
- DepositSwitchTargetAccount? targetAccount,
- DepositSwitchTargetUser? targetUser,
- DepositSwitchCreateRequestOptions? options,
- DepositSwitchAltCreateRequestCountryCode? countryCode,
Implementation
DepositSwitchAltCreateRequest copyWith(
{String? clientId,
String? secret,
DepositSwitchTargetAccount? targetAccount,
DepositSwitchTargetUser? targetUser,
DepositSwitchCreateRequestOptions? options,
enums.DepositSwitchAltCreateRequestCountryCode? countryCode}) {
return DepositSwitchAltCreateRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
targetAccount: targetAccount ?? this.targetAccount,
targetUser: targetUser ?? this.targetUser,
options: options ?? this.options,
countryCode: countryCode ?? this.countryCode);
}