setPropertyInt64 method

void setPropertyInt64(
  1. String name,
  2. int value
)

Implementation

void setPropertyInt64(
  String name,
  int value,
) {
  final ptr = calloc<Int64>(1)..value = value;
  _setProperty(
    name,
    mpv_format.MPV_FORMAT_INT64,
    ptr.cast(),
  );
  calloc.free(ptr);
}