delete static method

Future<void> delete(
  1. String key
)

Deletes the secret.

Implementation

static Future<void> delete(String key) async {
  await _pigeonApi.delete(key);
}