MarkerRecordedEventAttributes.fromJson constructor

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

Implementation

factory MarkerRecordedEventAttributes.fromJson(Map<String, dynamic> json) {
  return MarkerRecordedEventAttributes(
    decisionTaskCompletedEventId: json['decisionTaskCompletedEventId'] as int,
    markerName: json['markerName'] as String,
    details: json['details'] as String?,
  );
}