CardProposal constructor

CardProposal({
  1. required String type,
  2. required String front,
  3. required String back,
  4. String? sourceReference,
  5. required String topicId,
  6. Map<String, dynamic>? cardData,
  7. bool accepted = true,
})

Implementation

CardProposal({
  required this.type,
  required this.front,
  required this.back,
  this.sourceReference,
  required this.topicId,
  this.cardData,
  this.accepted = true,
});