FunctionType constructor

FunctionType({
  1. required Type returnType,
  2. LetFunctionDeclaration? element,
})

Implementation

FunctionType({
  required this.returnType,
  this.element,
});