getName method

String getName()

The skin's name, which is unique across all skins in the skeleton.

Implementation

String getName() {
  Pointer<Utf8> name = _bindings.spine_skin_get_name(_skin).cast();
  return name.toDartString();
}