toJson method

Map<String, Object?> toJson()

Implementation

Map<String, Object?> toJson() {
  var expand = this.expand;
  var ruleIds = this.ruleIds;
  var workflowEntityId = this.workflowEntityId;

  final json = <String, Object?>{};
  if (expand != null) {
    json[r'expand'] = expand;
  }
  json[r'ruleIds'] = ruleIds;
  json[r'workflowEntityId'] = workflowEntityId;
  return json;
}