LinkWhereClause constructor

const LinkWhereClause({
  1. required String linkCollection,
  2. required String linkName,
  3. required Id id,
})

Create a where clause for the specified link.

Implementation

const LinkWhereClause({
  required this.linkCollection,
  required this.linkName,
  required this.id,
}) : super._();