copyWith method
Implementation
EmbeddedContent copyWith(
{int? entityId, String? entityType, Embeddable? entity}) {
return EmbeddedContent(
entityId: entityId ?? this.entityId,
entityType: entityType ?? this.entityType,
entity: entity ?? this.entity,
);
}