Identifier constructor

Identifier({
  1. String? id,
  2. String? assigner,
  3. String? start,
  4. String? end,
  5. String? system,
  6. CodeStub? type,
  7. String? use,
  8. String? value,
})

Implementation

Identifier({
		String? id,
		String? assigner,
		String? start,
		String? end,
		String? system,
		CodeStub? type,
		String? use,
		String? value
	}) : id = id ?? null,
	assigner = assigner ?? null,
	start = start ?? null,
	end = end ?? null,
	system = system ?? null,
	type = type ?? null,
	use = use ?? null,
	value = value ?? null;