JSClassDefinition constructor

Implementation

JSClassDefinition({
  this.version = 0,
  this.attributes = JSClassAttributes.kJSClassAttributeNone,
  required this.className,
  this.parentClass,
  this.staticValues,
  this.staticFunctions,
  this.initialize,
  this.finalize,
  this.hasProperty,
  this.getProperty,
  this.setProperty,
  this.deleteProperty,
  this.getPropertyNames,
  this.callAsFunction,
  this.callAsConstructor,
  this.hasInstance,
  this.convertToType,
});