ActionModel constructor

ActionModel({
  1. String? action,
  2. String? message = "",
  3. String? token = "",
  4. bool value = true,
  5. TranscriptionActionModel? liveCaptionsData,
  6. String? consent,
  7. List<ConsentParticipant>? participants,
  8. Map<String, dynamic>? user,
})

Implementation

ActionModel({
  this.action,
  this.message = "",
  this.token = "",
  this.value = true,
  this.liveCaptionsData,
  this.consent,
  this.participants,
  this.user, // <-- added here
});