device_token_web_push property

DeviceTokenWebPush get device_token_web_push

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

Implementation

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

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

Implementation

set device_token_web_push(DeviceTokenWebPush value) {
  rawData["device_token_web_push"] = value.toJson();
}