PolyTransaction constructor

PolyTransaction({
  1. required List<SimpleRecipient> recipients,
  2. required List<ToplAddress> sender,
  3. required String propositionType,
  4. ToplAddress? changeAddress,
  5. PolyAmount? fee,
  6. Latin1Data? data,
})

Implementation

PolyTransaction(
    {required this.recipients,
    required List<ToplAddress> sender,
    required String propositionType,
    ToplAddress? changeAddress,
    PolyAmount? fee,
    Latin1Data? data})
    : super(
          sender: sender,
          propositionType: propositionType,
          changeAddress: changeAddress,
          fee: fee,
          data: data);