step method

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

Step forward or backward. Step forward if frame > 0, backward otherwise.

Implementation

Future<void> step({int frames = 1}) async {
  return _platform.step(textureId, frames);
}