getAmountInputConfig method
Implementation
Future<BridgeAmountInputConfig> getAmountInputConfig(String from, String to,
String token, String address, String signer) async {
final res =
await service.getAmountInputConfig(from, to, token, address, signer);
return BridgeAmountInputConfig.fromJson(Map<String, dynamic>.from(res));
}