WorkflowTransitionProperty.fromJson constructor

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

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? ?? '',
  );
}