staticDeleteLocalDatabase method

  1. @override
Future<void> staticDeleteLocalDatabase(
  1. String address,
  2. String inboxId, {
  3. String environment = 'production',
})
override

Implementation

@override
Future<void> staticDeleteLocalDatabase(String address, String inboxId, {String environment = 'production'}) async {
  await methodChannel.invokeMethod('staticDeleteLocalDatabase', {
    'address': address,
    'inboxId': inboxId,
    'environment': environment,
  });
}