toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final chatDataSource = this.chatDataSource;
  final workflowDataSource = this.workflowDataSource;
  return {
    'chatDataSource': ?chatDataSource,
    'workflowDataSource': ?workflowDataSource,
  };
}