backupWallet method

Future backupWallet({
  1. String? communityAddress,
})

Implementation

Future<dynamic> backupWallet({
  String? communityAddress,
}) async {
  Response response = await _dio.post(
    '/v1/wallets/backup',
    data: {'communityAddress': communityAddress},
    options: options,
  );
  return response.data;
}