TxDetail constructor

const TxDetail({
  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. required KeyPairData current,
  12. String? scanLink,
  13. String? scanName,
  14. int? confirmations,
})

Implementation

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