File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -1211,11 +1211,12 @@ ${response.body.contains('{') ? const JsonEncoder.withIndent(' ').convert(json.
1211
1211
) async {
1212
1212
final ScopedValues scopedValues = ScopedValues .of (context);
1213
1213
return await switch (action.subAction) {
1214
- AddDocumentSubAction action => addDocumentToCloud (action, scopedValues),
1215
- UpdateDocumentSubAction action =>
1216
- updateDocumentOnCloud (action, scopedValues),
1217
- RemoveDocumentSubAction action =>
1218
- removeDocumentFromCloud (action, scopedValues),
1214
+ AddDocumentSubAction addDocumentSubAction =>
1215
+ addDocumentToCloud (addDocumentSubAction, scopedValues),
1216
+ UpdateDocumentSubAction updateDocumentSubAction =>
1217
+ updateDocumentOnCloud (updateDocumentSubAction, scopedValues),
1218
+ RemoveDocumentSubAction removeDocumentSubAction =>
1219
+ removeDocumentFromCloud (removeDocumentSubAction, scopedValues),
1219
1220
};
1220
1221
}
1221
1222
You can’t perform that action at this time.
0 commit comments