NotificationSettingQuery constructor

NotificationSettingQuery({
  1. NotificationType? type,
  2. 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;
}