getAudioPath method

String? getAudioPath()

The path to the audio directory as defined in Spine, or null if nonessential data was not exported.

Implementation

String? getAudioPath() {
  Pointer<Utf8> name = _bindings.spine_skeleton_data_get_audio_path(_data).cast();
  if (name.address == nullptr.address) return null;
  return name.toDartString();
}