UnblockedUserEvent constructor

UnblockedUserEvent({
  1. required String callCid,
  2. required DateTime createdAt,
  3. String type = 'call.unblocked_user',
  4. required UserResponse user,
})

Returns a new UnblockedUserEvent instance.

Implementation

UnblockedUserEvent({
  required this.callCid,
  required this.createdAt,
  this.type = 'call.unblocked_user',
  required this.user,
});