expireIn method

Future<void> expireIn(
  1. String key,
  2. int seconds
)

Implementation

Future<void> expireIn(String key, int seconds) => _channel.invokeMethod(
    "Backendless.Cache.expireIn",
    <String, dynamic>{"key": key, "seconds": seconds});