mirror of
https://github.com/AppFlowy-IO/AppFlowy
synced 2026-05-23 17:18:31 +00:00
fix: convert function to camel case
This commit is contained in:
parent
2648a54482
commit
4716115388
1 changed files with 2 additions and 2 deletions
|
|
@ -40,14 +40,14 @@ class DocShareBloc extends Bloc<DocShareEvent, DocShareState> {
|
|||
return value;
|
||||
}
|
||||
|
||||
Future<Directory> get _ExportDir async {
|
||||
Future<Directory> get _exportDir async {
|
||||
Directory documentsDir = await appFlowyDocumentDirectory();
|
||||
|
||||
return documentsDir;
|
||||
}
|
||||
|
||||
Future<String> get _localPath async {
|
||||
final dir = await _ExportDir;
|
||||
final dir = await _exportDir;
|
||||
return dir.path;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue