FunctionRuntimeType constructor

const FunctionRuntimeType({
  1. required RuntimeType returnType,
  2. List<RuntimeType> positionalParameterTypes = const [],
  3. List<RuntimeType> optionalPositionalParameterTypes = const [],
  4. Map<String, RuntimeType> namedParameterTypes = const {},
})

Implementation

const FunctionRuntimeType({
  required this.returnType,
  this.positionalParameterTypes = const [],
  this.optionalPositionalParameterTypes = const [],
  this.namedParameterTypes = const {},
});