copyWith method
Implementation
EntityProperty copyWith({String? key, dynamic value}) {
return EntityProperty(
key: key ?? this.key,
value: value ?? this.value,
);
}
EntityProperty copyWith({String? key, dynamic value}) {
return EntityProperty(
key: key ?? this.key,
value: value ?? this.value,
);
}