Transaction  class 
 
    Properties 
    
        
  data → String ? 
  
 
  For transactions that call a contract function or create a contract,
contains the hashed function name and the encoded parameters or the
compiled contract code, respectively.
  final 
 
        
  from → String ? 
  
 
  The address of the sender of this transaction.
  final 
 
        
  gasPrice → BigInt ? 
  
 
  How much ether to spend on a single unit of gas. Can be null, in which
case the rpc server will choose this value.
  final 
 
        
  hashCode → int  
  
 
  The hash code for this object.
  no setter inherited 
 
        
  isEIP1559 → bool  
  
 
  Constructs a transaction that can be used to call a contract function.
  no setter 
 
        
  maxFeePerGas → BigInt ? 
  
 
  
  final 
 
        
  maxGas → int ? 
  
 
  The maximum amount of gas to spend.
  final 
 
        
  maxPriorityFeePerGas → BigInt ? 
  
 
  
  final 
 
        
  nonce → int ? 
  
 
  The nonce of this transaction. A nonce is incremented per sender and
transaction to make sure the same transaction can't be sent more than
once.
  final 
 
        
  runtimeType → Type  
  
 
  A representation of the runtime type of the object.
  no setter inherited 
 
        
  to → String ? 
  
 
  The recipient of this transaction, or null for transactions that create a
contract.
  final 
 
        
  value → BigInt ? 
  
 
  How much ether to send to to . This can be null, as some transactions
that call a contracts method won't have to send ether.
  final 
 
     
   
    
  
    Methods 
    
        
  noSuchMethod (Invocation invocation → dynamic 
   
  
 
  Invoked when a nonexistent method or property is accessed.
  inherited 
 
        
  toString ()
    → String  
    
  
 
  A string representation of this object.
  inherited