setLargeInt method
Store a 64-bit integer value for key.
Use this for values that need 64-bit precision.
Parameters
key: The key to set.value: The 64-bit integer value to store.
Also see:
- getLargeInt: to retrieve a stored 64-bit integer value.
Implementation
void setLargeInt(final String key, final int value) {
objectMethod(
pointerId,
'SettingsService',
'setValueInt64',
args: <String, dynamic>{'first': key, 'second': value},
);
}