SensitiveData constructor

const SensitiveData({
  1. required String path,
  2. String? id,
  3. String? whereDescription,
  4. TimestampType? createTimeStampType,
  5. String? field,
  6. bool? isBatch,
  7. bool? isMerge,
  8. bool? isTransaction,
  9. int? limit,
  10. List<FieldPath>? mergeFields,
  11. String? searchField,
  12. String? searchTerm,
  13. SearchTermType? searchTermType,
  14. String? type,
  15. TimestampType? updateTimeStampType,
  16. Object? data,
})

Implementation

const SensitiveData({
  required this.path,
  this.id,
  this.whereDescription,
  this.createTimeStampType,
  this.field,
  this.isBatch,
  this.isMerge,
  this.isTransaction,
  this.limit,
  this.mergeFields,
  this.searchField,
  this.searchTerm,
  this.searchTermType,
  this.type,
  this.updateTimeStampType,
  this.data,
});