audioPath property
      
      String
      get
      audioPath
      
    
    
The path to the audio directory as defined in Spine, or null if nonessential data was not exported.
Implementation
String get audioPath {
  final result = SpineBindings.bindings.spine_skeleton_data_get_audio_path(_ptr);
  return result.cast<Utf8>().toDartString();
}
      
      set
      audioPath
      (String value) 
      
    
    
    
Implementation
set audioPath(String value) {
  SpineBindings.bindings.spine_skeleton_data_set_audio_path(_ptr, value.toNativeUtf8().cast<Char>());
}