Play constructor
Play({})
Implementation
Play({
bool events = true,
bool osc = false,
bool gui = false,
String? vo,
bool pitch = false,
String? libmpv,
String? title,
void Function()? ready,
}) {
play_core.Play.ensureInitialized();
player = Player(
configuration: PlayerConfiguration(
// events: events,
osc: osc,
// vid: gui,
vo: vo,
pitch: pitch,
// libmpv: libmpv,
title: title ?? "",
ready: ready,
),
);
}