Category.native constructor

Category.native(
  1. Pointer<Category>? _pointer
)

Instantiates a Category object as a wrapper around native memory.

This memory is not owned or managed by this class, because all inner container instances only exist as details within a larger "task result" object. These task result objects have their own native dispose methods which cascade down their full tree of structs, releasing everything properly. Thus, it is not the job of this instance to ever release this native memory.

Implementation

Category.native(this._pointer);