frame property

String get frame

The current animation frame character to display.

Implementation

String get frame => _frame;
set frame (String value)

Sets the animation frame and marks layout as needed.

Implementation

set frame(String value) {
  if (_frame == value) return;
  _frame = value;
  markNeedsLayout();
}