setMinimumFetchIntervalInSeconds 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> setMinimumFetchIntervalInSeconds(
  1. int interval
)

Sets the minimum interval between successive fetch calls.

Implementation

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

///Sets the minimum interval between successive fetch calls.
static Future<void> setMinimumFetchIntervalInSeconds(int interval) async {
  return await _dartToNativeMethodChannel.invokeMethod(
      'setMinimumFetchIntervalInSeconds', {'interval': interval});
}