FunctionType constructor

FunctionType(
  1. OutputType? returnType,
  2. List<OutputType> paramTypes, [
  3. List<TypeModifier>? modifiers = const []
])

Implementation

FunctionType(
  this.returnType,
  this.paramTypes, [
  super.modifiers = const [],
]);