getAmountInputConfig method
Implementation
Future<Map> getAmountInputConfig(String from, String to, String token,
String address, String signer) async {
assert(_runner != null, 'bridge not init');
final Map res = await _runner?.evalJavascript(
'bridge.getInputConfig("$from", "$to", "$token", "$address", "$signer")');
return res;
}