updateCustomerId method
Implementation
@override
Future<void> updateCustomerId(String customerId) async {
AppConfig.logger.d("updateCustomerId $customerId");
try {
user.customerId = customerId;
userFirestore.updateCustomerId(user.id, customerId);
} catch (e) {
AppConfig.logger.e(e.toString());
}
update();
}