op property
The C-owned or RaylibTemp-owned typed pointer for this struct, if any.
Implementation
StructPointer<D>? op;
The C-owned or RaylibTemp-owned typed pointer for this struct, if any.
Implementation
@override
set op(StructPointer<D>? value) {
if (value == null) {
throw StateError(
'$runtimeType requires a backing memory pointer.',
);
}
super.op = value;
}