mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fix: convert function to camel case
This commit is contained in:
parent
2648a54482
commit
4716115388
@ -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 New Issue
Block a user