FunctionRuntimeType constructor
const
FunctionRuntimeType({
- required RuntimeType returnType,
- List<
RuntimeType> positionalParameterTypes = const [], - List<
RuntimeType> optionalPositionalParameterTypes = const [], - Map<
String, RuntimeType> namedParameterTypes = const {},
Implementation
const FunctionRuntimeType({
required this.returnType,
this.positionalParameterTypes = const [],
this.optionalPositionalParameterTypes = const [],
this.namedParameterTypes = const {},
});