IdentifierElement constructor

IdentifierElement({
  1. required String name,
  2. Type? type,
  3. required bool constant,
})

Implementation

IdentifierElement({
  required this.name,
  this.type,
  required this.constant,
});