JitsiMeetingResponse constructor

JitsiMeetingResponse({
  1. required bool isSuccess,
  2. String? message,
  3. dynamic error,
})

Implementation

JitsiMeetingResponse({
  required this.isSuccess,
  this.message,
  this.error,
});