PluginTxDetail constructor

const PluginTxDetail({
  1. Key? key,
  2. bool? success,
  3. String? networkName,
  4. String? action,
  5. String? fee,
  6. String? eventId,
  7. String? hash,
  8. String? blockTime,
  9. int? blockNum,
  10. List<TxDetailInfoItem>? infoItems,
  11. String? resolveLinks,
  12. required KeyPairData current,
})

Implementation

const PluginTxDetail({
  Key? key,
  this.success,
  this.networkName,
  this.action,
  this.fee,
  this.eventId,
  this.hash,
  this.blockTime,
  this.blockNum,
  this.infoItems,
  this.resolveLinks,
  required this.current,
}) : super(key: key);