BlockedUserEvent constructor

BlockedUserEvent({
  1. UserResponse? blockedByUser,
  2. required String callCid,
  3. required DateTime createdAt,
  4. String type = 'call.blocked_user',
  5. required UserResponse user,
})

Returns a new BlockedUserEvent instance.

Implementation

BlockedUserEvent({
  this.blockedByUser,
  required this.callCid,
  required this.createdAt,
  this.type = 'call.blocked_user',
  required this.user,
});