setAbRepeat method
Implementation
void setAbRepeat({
required bool enabled,
double startSeconds = 0.0,
double endSeconds = 0.0,
}) {
if (_engine == ffi.nullptr || _setAbRepeat == null) return;
_setAbRepeat!(_engine, enabled ? 1 : 0, startSeconds, endSeconds);
}