Data constructor Null safety

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

Implementation

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