WorkflowTransitionProperty.fromJson constructor
Implementation
factory WorkflowTransitionProperty.fromJson(Map<String, Object?> json) {
return WorkflowTransitionProperty(
id: json[r'id'] as String?,
key: json[r'key'] as String?,
value: json[r'value'] as String? ?? '',
);
}