Name property

String? Name
Gets the name of the property.

Implementation

String? get Name {
  if (this._name == null || this._name!.isEmpty) {
    ServiceObjectSchema.InitializeSchemaPropertyNames();
  }

  return this._name;
}
void Name=(String? value)

Implementation

void set Name(String? value) {
  this._name = value;
}