ArcaneAuthBackLink constructor

const ArcaneAuthBackLink({
  1. Key? key,
  2. required String href,
  3. String text = 'Back to home',
})

Implementation

const ArcaneAuthBackLink({
  super.key,
  required this.href,
  this.text = 'Back to home',
});