BatchCallDetailedResponse constructor

const BatchCallDetailedResponse({
  1. required String id,
  2. required String phoneNumberId,
  3. TelephonyProvider? phoneProvider,
  4. required String name,
  5. required String agentId,
  6. required int createdAtUnix,
  7. required int scheduledTimeUnix,
  8. required int totalCallsDispatched,
  9. required int totalCallsScheduled,
  10. required int lastUpdatedAtUnix,
  11. required BatchCallStatus status,
  12. required String agentName,
  13. required List<OutboundCallRecipientResponseModel> recipients,
})

Implementation

const BatchCallDetailedResponse({
  required this.id,
  required this.phoneNumberId,
  this.phoneProvider,
  required this.name,
  required this.agentId,
  required this.createdAtUnix,
  required this.scheduledTimeUnix,
  required this.totalCallsDispatched,
  required this.totalCallsScheduled,
  required this.lastUpdatedAtUnix,
  required this.status,
  required this.agentName,
  required this.recipients,
});