size property

set size (VtMouseEncoderSize value)

Implementation

set size(VtMouseEncoderSize value) {
  _ensureOpen();
  final native = calloc<bindings.GhosttyMouseEncoderSize>();
  try {
    value._writeTo(native.ref);
    _setOption(
      bindings.GhosttyMouseEncoderOption.GHOSTTY_MOUSE_ENCODER_OPT_SIZE,
      native.cast(),
    );
  } finally {
    calloc.free(native);
  }
}