putLong abstract method

void putLong(
  1. String key,
  2. int value
)

Stores a 64-bit integer value under the key, replacing any existing value. @param key Key to set. @param value Value to store.

Dart code snippet: @snippet storage_manager_example.dart dart_KeyValueStorage_putLong

Implementation

void putLong(String key, int value);