sendTx method

Future<Map?> sendTx(
  1. String chainFrom,
  2. Map txInfo,
  3. String password,
  4. String msgId,
  5. Map keyring,
)

Implementation

Future<Map?> sendTx(String chainFrom, Map txInfo, String password,
    String msgId, Map keyring) async {
  final res =
      await service.sendTx(chainFrom, txInfo, password, msgId, keyring);
  return res;
}