NotificationSettingQuery constructor
NotificationSettingQuery({
- NotificationType? type,
- AccountId? accountId,
Implementation
factory NotificationSettingQuery({
$0.NotificationType? type,
$0.AccountId? accountId,
}) {
final result = create();
if (type != null) result.type = type;
if (accountId != null) result.accountId = accountId;
return result;
}