CreateCall constructor

const CreateCall({
  1. required int userId,
  2. required CallProtocol protocol,
  3. required bool isVideo,
})

Creates a new call

Implementation

const CreateCall({
  required this.userId,
  required this.protocol,
  required this.isVideo,
});