getVersion method

String? getVersion()

The Spine version used to export the skeleton data.

Implementation

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