databaseExists method

Future<bool> databaseExists()

Implementation

Future<bool> databaseExists() async {
  return window.localStorage['kvs-$name.json'] is String &&
      window.localStorage['kvs-$name.json'] != '';
}