merge method
T?
merge(
- T? other
Implementation
T? merge(T? other) {
if (this == null) {
return other;
}
if (this!.inherit != true) {
return this;
}
if (other == null) {
return this;
}
if (other.inherit != true) {
return other;
}
return this!.copyFrom(other) as T;
}