ProductVariantState.fetched constructor

const ProductVariantState.fetched({
  1. required List<ProductVariantModel> productVariants,
})

The ProductVariantFetchedState state represents the state where product variants have been loaded.

Implementation

const factory ProductVariantState.fetched({
  required List<ProductVariantModel> productVariants,
}) = ProductVariantFetchedState;