validateBundleId static method
Implementation
static Future<Response> validateBundleId(String bundleId) async {
final Map<String, dynamic> formData = {
'app_id': StaticData.appId,
'bundle_id': bundleId,
'platform': Platform.operatingSystem,
};
return await post(
Uri.parse(
'${Constant.BASE_URL}/api/core/v1/app_chat/${StaticData.appId}/validate_bundle_id'),
headers: {'Authorization': StaticData.accessToken},
body: formData,
);
}