deleteRamAccount method

Future<Map<String, dynamic>> deleteRamAccount(
  1. String accountId
)

Implementation

Future<Map<String, dynamic>> deleteRamAccount(String accountId) async {
  return _client.post('/api/lapp/ram/account/delete', {
    'accountId': accountId,
  });
}