setCdCheck static method
Implementation
static Future<bool> setCdCheck(var cd) async {
try {
if ((cd is String) == false) {
MzanalyticsLog.p('cd 的 Key 与 Value 必须为String类型');
return false;
}
return true;
} catch (e) {
return false;
}
}