ActionResult<T> constructor

const ActionResult<T>({
  1. required ActionResultState state,
  2. T? object,
})

Creates a new ActionResult instance.

Implementation

const ActionResult({
  required this.state,
  this.object,
});