toJson method

Map<String, dynamic> toJson()

Implementation

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