device_token_ubuntu_push property

DeviceTokenUbuntuPush get device_token_ubuntu_push

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

DeviceTokenUbuntuPush get device_token_ubuntu_push {
  try {
    if (rawData["device_token_ubuntu_push"] is Map == false) {
      return DeviceTokenUbuntuPush({});
    }
    return DeviceTokenUbuntuPush(rawData["device_token_ubuntu_push"] as Map);
  } catch (e) {
    return DeviceTokenUbuntuPush({});
  }
}
set device_token_ubuntu_push (DeviceTokenUbuntuPush value)

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

set device_token_ubuntu_push(DeviceTokenUbuntuPush value) {
  rawData["device_token_ubuntu_push"] = value.toJson();
}