free method

void free({
  1. Pointer<JSStringRef>? group,
})

Implementation

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