latestPic property

XFile? get latestPic

Implementation

XFile? get latestPic => _latestPic;
set latestPic (XFile? value)

only use on weird edge cases, this normally gets set by shoot

Implementation

set latestPic(XFile? value) {
  _latestPic = value;
  notifyListeners();
}