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