DataItem constructor

DataItem({
  1. String name = '',
  2. Timestamp? createTime,
  3. Timestamp? updateTime,
  4. Map<String, String> labels = const {},
  5. required Value? payload,
  6. String etag = '',
  7. bool satisfiesPzs = false,
  8. bool satisfiesPzi = false,
})

Implementation

DataItem({
  this.name = '',
  this.createTime,
  this.updateTime,
  this.labels = const {},
  required this.payload,
  this.etag = '',
  this.satisfiesPzs = false,
  this.satisfiesPzi = false,
}) : super(fullyQualifiedName);