ConstantDeclaration constructor

const ConstantDeclaration({
  1. required String name,
  2. String? description,
  3. required Object? value,
})

Implementation

const ConstantDeclaration({
  required this.name,
  this.description,
  required this.value,
});