Variable constructor

const Variable({
  1. required ID id,
  2. required String name,
  3. required VariableTypes type,
  4. required bool isNullable,
})

Implementation

const Variable({
  required this.id,
  required this.name,
  required this.type,
  required this.isNullable,
});