device_token_simple_push property

DeviceTokenSimplePush get device_token_simple_push

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

Implementation

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

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

Implementation

set device_token_simple_push(DeviceTokenSimplePush value) {
  rawData["device_token_simple_push"] = value.toJson();
}