getAmountInputConfig method

Future<BridgeAmountInputConfig> getAmountInputConfig(
  1. String from,
  2. String to,
  3. String token,
  4. String address,
  5. String signer,
)

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));
}