BlockedUserEvent constructor
BlockedUserEvent({
- UserResponse? blockedByUser,
- required String callCid,
- required DateTime createdAt,
- String type = 'call.blocked_user',
- 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,
});