copyWith method
Implementation
BankTransferEventSyncRequest copyWith(
{String? clientId, String? secret, int? afterId, int? count}) {
return BankTransferEventSyncRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
afterId: afterId ?? this.afterId,
count: count ?? this.count);
}