getUser method
Implementation
@override
Future<bool> getUser({
  required String? chainId,
  required bool isUpdate,
}) async {
  if (_serviceNotReady) {
    throw Exception('Service is not ready');
  }
  //
  await _getUser(chainId, isUpdate);
  return await _getUserCompleter.future;
}