simpleAuthentication method

Future<void> simpleAuthentication(
  1. ClientSimpleAuthenticationData clientSimpleAuthenticationData,
  2. String authID
)

This method signs in a customer with Simple Authentication.

Args: clientSimpleAuthenticationData (ClientSimpleAuthenticationData): It is an object that contains the necessary data for client authentication. authID (String): The authID parameter is a string that represents the authentication ID. It is used as a unique identifier for the authentication process.

Implementation

Future<void> simpleAuthentication(
    ClientSimpleAuthenticationData clientSimpleAuthenticationData,
    String authID) async {
  return _methods.simpleAuthentication(
      clientSimpleAuthenticationData, authID);
}