HistoryEventExecutionDataDetails.fromJson constructor

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

Implementation

factory HistoryEventExecutionDataDetails.fromJson(Map<String, dynamic> json) {
  return HistoryEventExecutionDataDetails(
    truncated: json['truncated'] as bool?,
  );
}