copyWith method
Implementation
PropertyKey copyWith({String? key, String? self}) {
return PropertyKey(
key: key ?? this.key,
self: self ?? this.self,
);
}
PropertyKey copyWith({String? key, String? self}) {
return PropertyKey(
key: key ?? this.key,
self: self ?? this.self,
);
}