fetchWithMinimumIntervalInSeconds static method

  1. @Deprecated("This method is deprecated since version 1.7.0 and will be removed in the future versions of this SDK.")
Future<void> fetchWithMinimumIntervalInSeconds(
  1. int interval
)

Fetches Product configs, adhering to the specified minimum fetch interval in seconds.

Implementation

@Deprecated(
    "This method is deprecated since version 1.7.0 and will be removed in the future versions of this SDK.")

///Fetches Product configs, adhering to the specified minimum fetch interval in seconds.
static Future<void> fetchWithMinimumIntervalInSeconds(int interval) async {
  return await _dartToNativeMethodChannel.invokeMethod(
      'fetchWithMinimumFetchIntervalInSeconds', {'interval': interval});
}