scope property

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

Implementation

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

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

Implementation

set scope(NotificationSettingsScope value) {
  rawData["scope"] = value.toJson();
}