CockpitIndexedSuiteReference constructor

CockpitIndexedSuiteReference({
  1. required String documentId,
  2. required String suiteId,
  3. required String documentSha256,
})

Creates a CockpitIndexedSuiteReference.

Implementation

CockpitIndexedSuiteReference({
  required this.documentId,
  required this.suiteId,
  required this.documentSha256,
}) {
  CockpitFoundationValueReader.id(documentId, r'$.documentId');
  CockpitFoundationValueReader.id(suiteId, r'$.suiteId');
  CockpitFoundationValueReader.sha256(documentSha256, r'$.documentSha256');
}