Variable constructor
const
Variable({
- required ID id,
- required String name,
- required VariableTypes type,
- required bool isNullable,
Implementation
const Variable({
required this.id,
required this.name,
required this.type,
required this.isNullable,
});