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