FunctionInfo constructor

const FunctionInfo({
  1. required String name,
  2. required int arity,
  3. bool isAsync = false,
  4. bool isGenerator = false,
  5. String? returnType,
  6. List<String> parameterNames = const [],
  7. List<String> namedParameterNames = const [],
})

Implementation

const FunctionInfo({
  required super.name,
  required this.arity,
  this.isAsync = false,
  this.isGenerator = false,
  this.returnType,
  this.parameterNames = const [],
  this.namedParameterNames = const [],
});