copyWith method

TransferOriginatorListRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. int? count,
  4. int? offset,
})

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);
}