CodeStub constructor
CodeStub({})
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;