deleteLocale method
Deletes a locale file permanently.
Implementation
Future<void> deleteLocale({
required String locale,
}) async {
await _requestJson(
'DELETE',
'/api/catalog/locale',
body: <String, dynamic>{
'locale': locale,
},
);
}