putBool method

  1. @protected
Future<void> putBool(
  1. String key, {
  2. required bool value,
})
inherited

Puts a boolean variable in nosql, doing the conversion

Implementation

@protected
Future<void> putBool(String key, {required bool value}) async => put(
      key: key,
      value: value.toString(),
    );