JSCFunctionListEntry.defPropString constructor
JSCFunctionListEntry.defPropString(})
Implementation
factory JSCFunctionListEntry.defPropString(
JSContext ctx,
String name,
String cstr,
JSProp propFlags, {
bool autoDispose = true,
}) {
return JSCFunctionListEntry._(
ctx,
name: name,
propFlags: propFlags,
defType: JSDef.PROP_STRING,
magic: 0,
union: JSCFuntionListEntryUnion(str: cstr),
autoDispose: autoDispose,
);
}