ListRecordingsResponse constructor

ListRecordingsResponse({
  1. required String duration,
  2. List<CallRecording> recordings = const [],
})

Returns a new ListRecordingsResponse instance.

Implementation

ListRecordingsResponse({
  required this.duration,
  this.recordings = const [],
});