CallResponse constructor

CallResponse({
  1. required int code,
  2. String? msg,
  3. CallInfo? callInfo,
})

Implementation

CallResponse({
  required this.code,
  this.msg,
  this.callInfo,
});