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