toJson method

Map<String, dynamic> toJson()

Implementation

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