WorkflowLayout.fromJson constructor

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

Implementation

factory WorkflowLayout.fromJson(Map<String, Object?> json) {
  return WorkflowLayout(
    x: json[r'x'] as num?,
    y: json[r'y'] as num?,
  );
}