TransferRecurringListRequest constructor

TransferRecurringListRequest({
  1. required String clientId,
  2. required String secret,
  3. DateTime? startDate,
  4. DateTime? endDate,
  5. int? count,
  6. int? offset,
})

Implementation

TransferRecurringListRequest({
  required this.clientId,
  required this.secret,
  this.startDate,
  this.endDate,
  this.count,
  this.offset,
});