setDouble method

Future<bool> setDouble(
  1. String key,
  2. double value
)

Implementation

Future<bool> setDouble(String key, double value) async {
  return await FlutterLightweightStorePlatform.setDouble(module, key: key, value: value);
}