ActionResult.fromJson constructor

ActionResult.fromJson(
  1. Map<String, dynamic> json
)

Creates an ActionResult object from a JSON object.

Parameters:

  • json – A map containing the JSON data.

Returns an ActionResult object created from the JSON data.

Implementation

factory ActionResult.fromJson(Map<String, dynamic> json) =>
    _$ActionResultFromJson(json);