CardGenerationState constructor

const CardGenerationState({
  1. List<CardProposal> proposals = const [],
  2. bool isGenerating = false,
  3. String? error,
  4. bool isSaving = false,
})

Implementation

const CardGenerationState({
  this.proposals = const [],
  this.isGenerating = false,
  this.error,
  this.isSaving = false,
});