toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final fullyRefreshIncrementalTablesEnabled =
      this.fullyRefreshIncrementalTablesEnabled;
  final includedTags = this.includedTags;
  final includedTargets = this.includedTargets;
  final queryPriority = this.queryPriority;
  final serviceAccount = this.serviceAccount;
  final transitiveDependenciesIncluded = this.transitiveDependenciesIncluded;
  final transitiveDependentsIncluded = this.transitiveDependentsIncluded;
  return {
    'fullyRefreshIncrementalTablesEnabled':
        ?fullyRefreshIncrementalTablesEnabled,
    'includedTags': ?includedTags,
    'includedTargets': ?includedTargets,
    'queryPriority': ?queryPriority,
    'serviceAccount': ?serviceAccount,
    'transitiveDependenciesIncluded': ?transitiveDependenciesIncluded,
    'transitiveDependentsIncluded': ?transitiveDependentsIncluded,
  };
}