getAppReloadConfig method
Implementation
Future<UserReloadConfiguration> getAppReloadConfig(
{required String customerId}) {
try {
return AnsaFlutterSdkPlatform.instance
.getAppReloadConfig(customerId: customerId);
} catch (e) {
_logger.error('Failed to get app reload config', e);
rethrow;
}
}