responseData method

Future<Map?> responseData(
  1. Action action
)

Implementation

Future<Map?> responseData(Action action) async {
  final path = cacheManager.actionResponseFilePath(this, action.id);
  return jsonFromPath(path).then((value) => JSON(value).map);
}