BuddyStream constructor

const BuddyStream({
  1. Key? key,
  2. required String peer,
  3. required bool canCall,
  4. required void onCall(
    1. String party
    ),
  5. VoidCallback? onClose,
})

Implementation

const BuddyStream({
  super.key,
  required this.peer,
  required this.canCall,
  required this.onCall,
  this.onClose,
});