createFrameData method
Create a SpriteAnimationFrameData for the sprite in the position (row, column) on the sprite sheet grid.
Implementation
SpriteAnimationFrameData createFrameData(
int row,
int column, {
required double stepTime,
}) {
return createFrameDataFromId(row * columns + column, stepTime: stepTime);
}