TransactionMetadata constructor

TransactionMetadata({
  1. String? transactionType,
  2. String? currency,
  3. double? amount,
  4. int? decimals,
  5. String? fromAddress,
  6. String? toAddress,
  7. Map<String, dynamic> extra = const {},
})

Implementation

TransactionMetadata({
  this.transactionType,
  this.currency,
  this.amount,
  this.decimals,
  this.fromAddress,
  this.toAddress,
  this.extra = const {},
});