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, st) {
NeomErrorLogger.recordError(e, st, module: 'neom_core', operation: 'updateCustomerId');
}
update();
}