BridgeTxParams constructor

BridgeTxParams({
  1. required String module,
  2. required String call,
  3. required List params,
  4. required String txHex,
})

Implementation

BridgeTxParams({
  required this.module,
  required this.call,
  required this.params,
  required this.txHex,
});