QueryCallsResponse constructor

QueryCallsResponse({
  1. List<CallStateResponseFields> calls = const [],
  2. required String duration,
  3. String? next,
  4. String? prev,
})

Returns a new QueryCallsResponse instance.

Implementation

QueryCallsResponse({
  this.calls = const [],
  required this.duration,
  this.next,
  this.prev,
});