ActionResult constructor

ActionResult({
  1. String callId = '',
  2. bool success = false,
  3. String errorMessage = '',
})

Implementation

ActionResult({
    this.callId = '',
    this.success = false,
    this.errorMessage = '',
});