device_token_microsoft_push property

DeviceTokenMicrosoftPush get device_token_microsoft_push

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

Implementation

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

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

Implementation

set device_token_microsoft_push(DeviceTokenMicrosoftPush value) {
  rawData["device_token_microsoft_push"] = value.toJson();
}