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