exists property

  1. @override
Future<bool> get exists
override

Implementation

@override
Future<bool> get exists async {
  documentDirectory ??= (await getApplicationDocumentsDirectory()).path;
  var file = File('$documentDirectory/kvs-$name.json');

  return file.exists();
}