getMediaFilePath method
Returns the intended absolute path for a specific media file.
Implementation
Future<String> getMediaFilePath(String messageId, String fileName) async {
final dir = await _getMessageMediaDir(messageId);
return p.join(dir, fileName);
}