AddToSiriButton constructor

AddToSiriButton({
  1. Key? key,
  2. required String title,
  3. required String id,
  4. required String url,
  5. double? height,
})

Implementation

AddToSiriButton({
  super.key,
  required this.title,
  required this.id,
  required this.url,
  this.height,
});