AssetFreezeTransaction constructor

AssetFreezeTransaction({
  1. Address? freezeAddress,
  2. int? assetId,
  3. bool? freeze,
  4. int? fee,
  5. int? firstValid,
  6. Uint8List? genesisHash,
  7. int? lastValid,
  8. Address? sender,
  9. String? type,
  10. String? genesisId,
  11. Uint8List? group,
  12. Uint8List? lease,
  13. Uint8List? note,
  14. Address? rekeyTo,
})

Implementation

AssetFreezeTransaction({
  this.freezeAddress,
  this.assetId,
  this.freeze,
  int? fee,
  int? firstValid,
  Uint8List? genesisHash,
  int? lastValid,
  Address? sender,
  String? type,
  String? genesisId,
  Uint8List? group,
  Uint8List? lease,
  Uint8List? note,
  Address? rekeyTo,
}) : super(
        type: type,
        fee: fee,
        firstValid: firstValid,
        genesisHash: genesisHash,
        lastValid: lastValid,
        sender: sender,
        genesisId: genesisId,
        group: group,
        lease: lease,
        note: note,
        rekeyTo: rekeyTo,
      );