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