copyWith method
Implementation
UserProperty copyWith(
{String? key,
Map<String, dynamic>? value,
String? id,
DateTime? lastModifiedDate,
DateTime? createdDate,
GenericLinks? links}) {
return UserProperty(
key: key ?? this.key,
value: value ?? this.value,
id: id ?? this.id,
lastModifiedDate: lastModifiedDate ?? this.lastModifiedDate,
createdDate: createdDate ?? this.createdDate,
links: links ?? this.links,
);
}