GetCallResponse constructor

GetCallResponse({
  1. required CallResponse call,
  2. required String duration,
  3. List<MemberResponse> members = const [],
  4. MemberResponse? membership,
  5. List<OwnCapability> ownCapabilities = const [],
})

Returns a new GetCallResponse instance.

Implementation

GetCallResponse({
  required this.call,
  required this.duration,
  this.members = const [],
  this.membership,
  this.ownCapabilities = const [],
});