activePaintings property

List<PaintedModel> activePaintings

Returns the list of painted models representing the painting history.

Implementation

List<PaintedModel> get activePaintings =>
    historyPosition <= 0 || paintHistory.length < historyPosition
        ? []
        : paintHistory[historyPosition - 1];