fromJson static method

  1. @visibleForTesting
PrepareWorkflowConfig? fromJson(
  1. dynamic json
)

Implementation

@visibleForTesting
static PrepareWorkflowConfig? fromJson(json) {
  if (json == null) return null;

  var result = PrepareWorkflowConfig(
    json["workflowId"],
  );

  return result;
}