getName method

String getName()

The name of the bone, which is unique across all bones in the skeleton.

Implementation

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