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