getUser method

  1. @override
Future<bool> getUser({
  1. required String? chainId,
  2. required bool isUpdate,
})
override

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;
}