isBlackList static method

bool isBlackList(
  1. String userId
)

是否在黑名单中

Implementation

static bool isBlackList(String userId) {
  return getIt<ContactProvider>().isBlockList(userId);
}