getPath method

String getPath(
  1. String basePath,
  2. int 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();
}