GetWorkflowRunPropertiesResponse.fromJson constructor
Implementation
factory GetWorkflowRunPropertiesResponse.fromJson(Map<String, dynamic> json) {
return GetWorkflowRunPropertiesResponse(
runProperties: (json['RunProperties'] as Map<String, dynamic>?)
?.map((k, e) => MapEntry(k, e as String)),
);
}