SolTxData constructor

SolTxData({
  1. required String? initTokenAddress,
  2. required String transaction,
  3. required String blockhash,
  4. required String lastValidBlockHeight,
  5. required double fee,
})

Implementation

SolTxData({
  required this.initTokenAddress,
  required this.transaction,
  required this.blockhash,
  required this.lastValidBlockHeight,
  required this.fee,
});