playHLA method
Plays an HLA file from the specified path.
For more information on HLA files, see: https://docs.hapticlabs.io/mobile/hlafiles/
path - The file path to the .hla file. Can be an absolute path
(starting with /) or a relative path (not starting with /) from the
app's assets root.
Returns a Future that completes when the haptic playback has
terminated.
Implementation
Future<void> playHLA(String path) {
return HapticlabsPlayerPlatform.instance.playHLA(path);
}