Future<File> saveAsync() async { await file.create(recursive: true); await file.writeAsString( JsonEncoder.withIndent(' ').convert(_value ?? {}), ); return file; }