copyWith method
ProcessorTokenCreateRequest
copyWith({
- String? clientId,
- String? secret,
- String? accessToken,
- String? accountId,
- ProcessorTokenCreateRequestProcessor? processor,
Implementation
ProcessorTokenCreateRequest copyWith(
{String? clientId,
String? secret,
String? accessToken,
String? accountId,
enums.ProcessorTokenCreateRequestProcessor? processor}) {
return ProcessorTokenCreateRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
accessToken: accessToken ?? this.accessToken,
accountId: accountId ?? this.accountId,
processor: processor ?? this.processor);
}