supply method
Implementation
Future<String> supply({required SupplyParams transactionType}) async {
try {
return await client.get(api('network/supply', {
"key": transactionType.name,
}));
} on ExplorerException catch (e) {
throw ExplorerException(
code: e.code, message: '{"supply": "${e.message}"}');
}
}