AppValueInsertDTO constructor

AppValueInsertDTO({
  1. DateTime? timestamp,
  2. Map<String, num> values = const {},
  3. FileTransferDTO? attachment,
})

Returns a new AppValueInsertDTO instance.

Implementation

AppValueInsertDTO({
  this.timestamp,
  this.values = const {},
  this.attachment,
});