CustomerTransitionExecutionDTO.fromJson constructor

CustomerTransitionExecutionDTO.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory CustomerTransitionExecutionDTO.fromJson(Map<String, Object?> json) {
  return CustomerTransitionExecutionDTO(
    additionalComment: json[r'additionalComment'] != null
        ? AdditionalCommentDTO.fromJson(
            json[r'additionalComment']! as Map<String, Object?>)
        : null,
    id: json[r'id'] as String?,
  );
}