ActionResult constructor

ActionResult(
  1. bool success, {
  2. dynamic returnData,
  3. Map? nextAction,
  4. String? failureMessage,
})

Implementation

ActionResult(this.success,
    {this.returnData, this.nextAction, this.failureMessage});