getPath method
Returns the specified base path with an optional numeric suffix for the specified index.
Implementation
String getPath(String basePath, int index) {
final result = SpineBindings.bindings.spine_sequence_get_path(_ptr, basePath.toNativeUtf8().cast<Char>(), index);
return result.cast<Utf8>().toDartString();
}