FunctionDefinitionWidget constructor

const FunctionDefinitionWidget({
  1. Key? key,
  2. required FunctionDefinition functionDefinition,
  3. bool showParameters = true,
  4. bool showReturnTypeLabel = false,
})

Implementation

const FunctionDefinitionWidget({
  super.key,
  required this.functionDefinition,
  this.showParameters = true,
  this.showReturnTypeLabel = false,
});