Pivot constructor

Pivot({
  1. String? productId,
  2. String? assetId,
  3. String? sortId,
  4. DateTime? createdAt,
  5. DateTime? updatedAt,
})

Implementation

Pivot({
    this.productId,
    this.assetId,
    this.sortId,
    this.createdAt,
    this.updatedAt,
});