toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (computationId != null) 'computationId': computationId!,
if (instructions != null)
'instructions': instructions!.map((value) => value.toJson()).toList(),
if (stageName != null) 'stageName': stageName!,
if (systemName != null) 'systemName': systemName!,
if (transformUserNameToStateFamily != null)
'transformUserNameToStateFamily': transformUserNameToStateFamily!,
};