stepFrame method

Future<void> stepFrame({
  1. int frames = 1,
})

Implementation

Future<void> stepFrame({int frames = 1}) async {
  final int? id = _playerId;
  if (id == null) return;
  await UMediaChannel.call<void>(id, "stepFrame", <String, Object?>{"frames": frames});
}