CustomVideoEvent constructor

CustomVideoEvent({
  1. required String callCid,
  2. required DateTime createdAt,
  3. Map<String, Object> custom = const {},
  4. String type = 'custom',
  5. required UserResponse user,
})

Returns a new CustomVideoEvent instance.

Implementation

CustomVideoEvent({
  required this.callCid,
  required this.createdAt,
  this.custom = const {},
  this.type = 'custom',
  required this.user,
});