verifyDrmKey static method

bool verifyDrmKey(
  1. String? pid
)

Implementation

static bool verifyDrmKey(String? pid) {
  final checkSum = checkSumDrmPid(pid);
  if (checkSum.toString() == pid?.substring(pidSize - 2)) {
    return true;
  }
  return false;
}