LuauMethod constructor

LuauMethod({
  1. required String className,
  2. required String methodName,
  3. required List<LuauParameter> parameters,
  4. required List<LuauNode> body,
  5. bool isStatic = false,
})

Implementation

LuauMethod({
  required this.className,
  required this.methodName,
  required this.parameters,
  required this.body,
  this.isStatic = false,
});