toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final excludePrefixes = this.excludePrefixes;
  final includePrefixes = this.includePrefixes;
  final lastModifiedBefore = this.lastModifiedBefore;
  final lastModifiedSince = this.lastModifiedSince;
  final matchGlob = this.matchGlob;
  final maxTimeElapsedSinceLastModification =
      this.maxTimeElapsedSinceLastModification;
  final minTimeElapsedSinceLastModification =
      this.minTimeElapsedSinceLastModification;
  return {
    'excludePrefixes': ?excludePrefixes,
    'includePrefixes': ?includePrefixes,
    'lastModifiedBefore': ?lastModifiedBefore,
    'lastModifiedSince': ?lastModifiedSince,
    'matchGlob': ?matchGlob,
    'maxTimeElapsedSinceLastModification':
        ?maxTimeElapsedSinceLastModification,
    'minTimeElapsedSinceLastModification':
        ?minTimeElapsedSinceLastModification,
  };
}