deleteWallet method

Future deleteWallet()

Implementation

Future<dynamic> deleteWallet() async {
  final Response response = await _dio.delete(
    '/v0/wallets/wallets',
    options: options,
  );
  return response.data;
}