PermissionCheckResponse constructor

PermissionCheckResponse({
  1. required bool hasPermission,
  2. List<Message>? errors,
  3. GenericLinks? links,
})

Implementation

PermissionCheckResponse(
    {required this.hasPermission, List<Message>? errors, this.links})
    : errors = errors ?? [];