getWalletEventData method
Wallet-specific event data (to be implemented by concrete events)
Implementation
@override
Map<String, dynamic> getWalletEventData() {
return {
'txid': txid,
'vout': vout,
'satoshis': satoshis,
'scriptPubKey': scriptPubKey,
'address': address,
'blockHeight': blockHeight,
'confirmations': confirmations,
'initialStatus': initialStatus.name,
};
}