updateFallbackLocale method
Updates the fallback locale in config.
Implementation
Future<void> updateFallbackLocale({
required String fallbackLocale,
}) async {
await _requestJson(
'PATCH',
'/api/catalog/config',
body: <String, dynamic>{
'fallbackLocale': fallbackLocale,
},
);
}