updateAutoGenerateDictionary method
Implementation
Future<void> updateAutoGenerateDictionary({
required bool autoGenerateDictionary,
}) async {
await _requestJson(
'PATCH',
'/api/catalog/config',
body: <String, dynamic>{
'autoGenerateDictionary': autoGenerateDictionary,
},
);
}