Data constructor
const
Data({})
Implementation
const factory Data({
/// Smart contract code (hexadecimal),
String? code,
/// Rree zone for data hosting (string or hexadecimal)
String? content,
/// Authorization/Delegations containing list of secrets and their authorized public keys to proof the ownership
@Default([]) final List<Ownership> ownerships,
/// Asset transfers
Ledger? ledger,
/// For non asset transfers, the list of recipients of the transaction (e.g Smart contract interactions)
@Default([]) final List<Recipient> recipients,
}) = _Data;