getAppReloadConfig method

Future<UserReloadConfiguration> getAppReloadConfig({
  1. required String customerId,
})

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;
  }
}