XcmTxConfirmParams constructor

XcmTxConfirmParams({
  1. String? module,
  2. String? call,
  3. Map txDisplay = const {},
  4. Map<String, Widget> txDisplayBold = const {},
  5. List? params,
  6. String? rawParams,
  7. bool? isUnsigned,
  8. String? txTitle,
  9. String? txName,
  10. bool isPlugin = false,
  11. bool isBridge = false,
  12. required String chainFrom,
  13. Widget? chainFromIcon,
  14. required TokenBalanceData feeToken,
  15. Widget? waitingWidget,
  16. String? txHex,
  17. KeyPairData? sender,
})

Implementation

XcmTxConfirmParams(
    {this.module,
    this.call,
    this.txDisplay = const {},
    this.txDisplayBold = const {},
    this.params,
    this.rawParams,
    this.isUnsigned,
    this.txTitle,
    this.txName,
    this.isPlugin = false,
    this.isBridge = false,
    required this.chainFrom,
    this.chainFromIcon,
    required this.feeToken,
    this.waitingWidget,
    this.txHex,
    this.sender});