call method
Implementation
@override
Future<BaseResponseDonuzModel?> call(
{required String key, required Map<String, dynamic> data}) async {
var appId = await _establishmentById.currentId();
if (appId == null) {
return null;
}
return await _repository.setCustomConfig(
appId: appId, key: key, data: data);
}