logout method

Future<void> logout()

Logout customer.

Logs out the currently authenticated customer and clears their session. This invalidates the customer token and removes any stored authentication data.

Implementation

Future<void> logout() {
  throw UnimplementedError('logout() has not been implemented.');
}