ExecutionFailedEventDetails.fromJson constructor
Implementation
factory ExecutionFailedEventDetails.fromJson(Map<String, dynamic> json) {
return ExecutionFailedEventDetails(
cause: json['cause'] as String?,
error: json['error'] as String?,
);
}