ActionModel constructor

ActionModel({
  1. String? action,
  2. String? message = "",
  3. String? token = "",
  4. bool value = true,
  5. TranscriptionActionModel? liveCaptionsData,
})

Implementation

ActionModel({
  this.action,
  this.message = "",
  this.token = "",
  this.value = true,
  this.liveCaptionsData,
});