getWithdrawMinimum abstract method

Future<double> getWithdrawMinimum(
  1. String asset,
  2. String blockchain, [
  3. String? network
])

Obtains minimum amount required to withdraw funds on a given asset.

Throw UnauthorizedException when the secret key is invalid. Throw NotFoundException when the asset was not found. It throws exception TelePayException with any other error.

Implementation

Future<double> getWithdrawMinimum(
  String asset,
  String blockchain, [
  String? network,
]);