FunctionArgument constructor

FunctionArgument({
  1. required String name,
  2. required String type,
  3. required dynamic value,
})

Implementation

FunctionArgument({
  required this.name,
  required this.type,
  required this.value,
});