copyWith method

EntityPropertyDetails copyWith({
  1. num? entityId,
  2. String? key,
  3. String? value,
})

Implementation

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