op property

StructPointer<D>? get op
inherited

The C-owned or RaylibTemp-owned typed pointer for this struct, if any.

Implementation

StructPointer<D>? op;
  1. @override
set op (StructPointer<D>? value)
override

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;
}