undo method
call last event
Implementation
Future<dynamic> undo() {
if (_scopeCommand == null) {
throw Exception("Scope<${T..runtimeType}> not initalize");
}
return _scopeCommand!.undo();
}
call last event
Future<dynamic> undo() {
if (_scopeCommand == null) {
throw Exception("Scope<${T..runtimeType}> not initalize");
}
return _scopeCommand!.undo();
}