wipeDatabase method
Wipes the database by deleting and recreating it. This will drop all tables and data in the database. The deployment will error until a redeploy is performed.
Implementation
_i2.Future<void> wipeDatabase({required String cloudCapsuleId}) =>
caller.callServerEndpoint<void>('database', 'wipeDatabase', {
'cloudCapsuleId': cloudCapsuleId,
});