filePath property

Future<String> filePath

Returns the full file path to the sound file.

Implementation

Future<String> get filePath async {
  String dir = await path;
  return "$dir/$filename";
}