fromPathAsyncImpl function

Future<AudioMeta> fromPathAsyncImpl(
  1. String path
)

Implementation

Future<AudioMeta> fromPathAsyncImpl(String path) async {
  return await AudioMeta.fromFileAsync(File(path));
}