logout method
Logout customer.
Logs out the currently authenticated customer and clears their session. This invalidates the customer token and removes any stored authentication data.
Implementation
@override
Future<void> logout() async {
_customerToken = null;
}