Variable constructor

Variable({
  1. required String name,
  2. DartType? type,
  3. String? typeString,
  4. bool? isCoreType,
  5. bool? isNullable,
  6. bool? isFinal,
  7. bool? hasRequired,
  8. bool? isList,
  9. bool? isEnum,
})

Implementation

Variable({
  required this.name,
  this.type,
  this.typeString,
  this.isCoreType,
  this.isNullable,
  this.isFinal,
  this.hasRequired,
  this.isList,
  this.isEnum,
});