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