freeStructFields method

void freeStructFields(
  1. 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');
}