free method
Implementation
void free({Pointer<JSStringRef>? group}) {
if (group != null && group != nullptr) {
calloc.free(group);
}
for (JSString string in this) {
string.free();
}
}
void free({Pointer<JSStringRef>? group}) {
if (group != null && group != nullptr) {
calloc.free(group);
}
for (JSString string in this) {
string.free();
}
}