SubmitResponseOptions constructor

SubmitResponseOptions({
  1. required String customerId,
  2. required String title,
  3. required String description,
  4. required String typeId,
  5. String? email,
  6. String? name,
  7. Map<String, dynamic>? metadata,
})

Implementation

SubmitResponseOptions({
  required this.customerId,
  required this.title,
  required this.description,
  required this.typeId,
  this.email,
  this.name,
  this.metadata,
});