freeStructFields method
void
freeStructFields(
- T struct
Deallocates any memory on the struct that would be missed simply by
calling calloc.free(struct), which the parent who called this method
will do after this method completes.
Implementation
void freeStructFields(T struct) {
throw UnimplementedError('Must implement $runtimeType.freeStructFields');
}