CallingWidget constructor

const CallingWidget({
  1. Key? key,
  2. required String callTo,
  3. required bool isCall,
  4. required bool isRegister,
  5. required SipConfigModel sipConfig,
})

Creates a calling widget that controls the call UI and call actions.

Implementation

const CallingWidget({
  super.key,
  required this.callTo,
  required this.isCall,
  required this.isRegister,
  required this.sipConfig,
});