RawTransaction constructor

RawTransaction({
  1. required BigInt? fee,
  2. required BigInt? firstValid,
  3. required Uint8List? genesisHash,
  4. required BigInt? lastValid,
  5. required Address? sender,
  6. required String? type,
  7. required String? genesisId,
  8. required Uint8List? group,
  9. required Uint8List? lease,
  10. required Uint8List? note,
  11. required Address? rekeyTo,
})

Implementation

RawTransaction({
  required this.fee,
  required this.firstValid,
  required this.genesisHash,
  required this.lastValid,
  required this.sender,
  required this.type,
  required this.genesisId,
  required this.group,
  required this.lease,
  required this.note,
  required this.rekeyTo,
});