AgreementAppendix constructor

AgreementAppendix({
  1. int? docSeq,
  2. int? verseSeq,
  3. String? documentId,
  4. String? path,
})

Implementation

AgreementAppendix({
		int? docSeq,
		int? verseSeq,
		String? documentId,
		String? path
	}) : documentId = documentId ?? null,
	path = path ?? null,
	_docSeq = docSeq ?? null,
	_verseSeq = verseSeq ?? null;