Record constructor

Record({
  1. DateTime? deviceLastModifiedDate,
  2. String? key,
  3. String? lastModifiedBy,
  4. DateTime? lastModifiedDate,
  5. int? syncCount,
  6. String? value,
})

Implementation

Record({
  this.deviceLastModifiedDate,
  this.key,
  this.lastModifiedBy,
  this.lastModifiedDate,
  this.syncCount,
  this.value,
});