RoutingType property
String?
get
RoutingType
Implementation
String? get RoutingType => this.routingType;
set
RoutingType
(String? value)
Implementation
set RoutingType(String? value) {
if (this.CanSetFieldValue(this.routingType, value)) {
this.routingType = value;
this.Changed();
}
}