statusResult property

StatusResult? get statusResult
inherited

Implementation

StatusResult? get statusResult => _statusResult;
set statusResult (StatusResult? value)
inherited

Implementation

set statusResult(StatusResult? value) {
  _statusResult = value;
  notifyListeners<StatusChanged>((StatusChanged func) {
    func(this, _statusResult);
  });
}