getSignatureKeys method

Future<Signature> getSignatureKeys()

Get the signature keys from the server

Implementation

Future<Signature> getSignatureKeys() =>
    _apiClient.getSignatureKeys().catchError((error) {
      _crashlytics?.recordError(error, StackTrace.current);
      throw error;
    });