getFilePath method

Future<String> getFilePath(
  1. dynamic uniqueFileName
)

Implementation

Future<String> getFilePath(uniqueFileName) async {
  String path = '';
  Directory dir = await getApplicationDocumentsDirectory();
  path = '${dir.path}/$uniqueFileName';
  return path;
}