Transaction constructor

Transaction({
  1. required int validUntil,
  2. Chain? network,
  3. String? from,
  4. List<OutMessage> messages = const [],
})

Implementation

Transaction({required this.validUntil, this.network, this.from, this.messages = const []});