Data constructor

Data({
  1. String? code,
  2. String? content,
  3. Keys? keys,
  4. Ledger? ledger,
  5. List<String>? recipients,
})

Implementation

Data({
  this.code,
  this.content,
  this.keys,
  this.ledger,
  this.recipients,
});