ParameterInfo constructor

const ParameterInfo({
  1. required String name,
  2. required String type,
  3. required bool isRequired,
  4. required String? defaultValue,
  5. required bool isPositional,
  6. bool isFamily = false,
})

Implementation

const ParameterInfo({
  required this.name,
  required this.type,
  required this.isRequired,
  required this.defaultValue,
  required this.isPositional,
  this.isFamily = false,
});