save static method

Future<void> save(
  1. SaveSecretRequest request
)

Saves the secret.

On Android prompt is shown, while on iOS there is no need for the prompt when saving.

Implementation

static Future<void> save(SaveSecretRequest request) async {
  await _catchCommonError(() async {
    await _pigeonApi.save(request);

    return '';
  });
}