URLTextButton constructor

const URLTextButton({
  1. Key? key,
  2. required String url,
  3. String? text,
})

Implementation

const URLTextButton({
  super.key,
  required this.url,
  this.text,
});