call method
Implementation
Future<dynamic> call(T newData, {String? fragment, Map<String, String>? arguments}) {
if (_scopeCommand == null) {
throw Exception("Scope<${T..runtimeType}> not initalize");
}
return _scopeCommand!.execute(newData, fragment: fragment, arguments: arguments);
}