copyWith method
DepositSwitchCreateRequest
copyWith({
- String? clientId,
- String? secret,
- String? targetAccessToken,
- String? targetAccountId,
- DepositSwitchCreateRequestCountryCode? countryCode,
- DepositSwitchCreateRequestOptions? options,
Implementation
DepositSwitchCreateRequest copyWith(
{String? clientId,
String? secret,
String? targetAccessToken,
String? targetAccountId,
enums.DepositSwitchCreateRequestCountryCode? countryCode,
DepositSwitchCreateRequestOptions? options}) {
return DepositSwitchCreateRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
targetAccessToken: targetAccessToken ?? this.targetAccessToken,
targetAccountId: targetAccountId ?? this.targetAccountId,
countryCode: countryCode ?? this.countryCode,
options: options ?? this.options);
}