realUpdateOffset method

void realUpdateOffset(
  1. double offset, [
  2. bool animation = true
])

Implementation

void realUpdateOffset(double offset, [bool animation = true]) {
  if (widget.ui.enableLineAnimation() && animation) {
    animationOffset(offset);
  } else {
    lyricPaint.lyricOffset = offset;
  }
}