toJson method

Map<String, dynamic> toJson()

Implementation

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