updateTotalImageSize method

void updateTotalImageSize(
  1. double width,
  2. double height
)

Implementation

void updateTotalImageSize(double width, double height){
  _state.totalImageSize = Size(width, height);
  notifyListeners();
}