getLastFetchTimeStampInMillis 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<int?> getLastFetchTimeStampInMillis()

Returns the last fetched timestamp in millis.

Implementation

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

///Returns the last fetched timestamp in millis.
static Future<int?> getLastFetchTimeStampInMillis() async {
  return await _dartToNativeMethodChannel
      .invokeMethod('getLastFetchTimeStampInMillis', {});
}