playPath method

Future<void> playPath(
  1. String path, {
  2. List<FetchResourceModel> fetchResources = const [],
})

Implementation

Future<void> playPath(String path,
    {List<FetchResourceModel> fetchResources = const []}) {
  return play(source: path,
      playMethod: 'playPath',
      playArg: 'path',
      fetchResources: fetchResources);
}