NativeExtensionCallable constructor

NativeExtensionCallable({
  1. required String name,
  2. required Function adapter,
  3. bool isGetter = false,
  4. bool isSetter = false,
  5. bool isOperator = false,
  6. int arity = 1,
})

Implementation

NativeExtensionCallable({
  required this.name,
  required this.adapter,
  this.isGetter = false,
  this.isSetter = false,
  this.isOperator = false,
  int arity = 1,
}) : _arity = arity;