copyWith method
Implementation
EntityPropertyDetails copyWith({num? entityId, String? key, String? value}) {
return EntityPropertyDetails(
entityId: entityId ?? this.entityId,
key: key ?? this.key,
value: value ?? this.value,
);
}
EntityPropertyDetails copyWith({num? entityId, String? key, String? value}) {
return EntityPropertyDetails(
entityId: entityId ?? this.entityId,
key: key ?? this.key,
value: value ?? this.value,
);
}