name property
      
      String
      get
      name
      
    
    
The skeleton's name, which by default is the name of the skeleton data file when possible, or null when a name hasn't been set.
Implementation
String get name {
  final result = SpineBindings.bindings.spine_skeleton_data_get_name(_ptr);
  return result.cast<Utf8>().toDartString();
}
      
      set
      name
      (String value) 
      
    
    
    
Implementation
set name(String value) {
  SpineBindings.bindings.spine_skeleton_data_set_name(_ptr, value.toNativeUtf8().cast<Char>());
}