Parameter constructor

Parameter({
  1. String? type,
  2. required bool isFinal,
  3. required String name,
  4. String? defaultValue,
  5. required bool isOptional,
  6. required bool isRequired,
  7. required String rawLine,
})

Implementation

Parameter({
  this.type,
  required this.isFinal,
  required this.name,
  this.defaultValue,
  required this.isOptional,
  required this.isRequired,
  required this.rawLine,
});