IntentService({ List<Intent>? only, bool? all }) { if (all == true) { list = [Intent.all]; return; } if (only != null) { list.addAll(only); } }