setFlip method
Set flip state.
Implementation
Future<void> setFlip(
String id, {
bool horizontal = false,
bool vertical = false,
bool animate = false,
int? durationMs,
String? curve,
}) async {
await send<void>('setFlip', windowId: id, params: {
'horizontal': horizontal,
'vertical': vertical,
'animate': animate,
'durationMs': ?durationMs,
'curve': ?curve,
});
}