CodeStub constructor

CodeStub({
  1. String? id,
  2. String? context,
  3. String? type,
  4. String? code,
  5. String? version,
  6. String? contextLabel,
  7. Map<String, String>? label,
})

Implementation

CodeStub({
		String? id,
		String? context,
		String? type,
		String? code,
		String? version,
		String? contextLabel,
		Map<String, String>? label
	}) : id = id ?? null,
	context = context ?? null,
	type = type ?? null,
	code = code ?? null,
	version = version ?? null,
	contextLabel = contextLabel ?? null,
	label = label ?? null;