setBoolean method

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

Implementation

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