nonce property
String?
get
nonce
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
String? get nonce {
try {
if (rawData["nonce"] is String == false) {
return null;
}
return rawData["nonce"] as String;
} catch (e) {
return null;
}
}
set
nonce
(String? value)
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
set nonce(String? value) {
rawData["nonce"] = value;
}