AntdLink constructor

const AntdLink({
  1. Key? key,
  2. required String text,
  3. required String? link,
  4. bool? isRoute = false,
})

Implementation

const AntdLink({
  super.key,
  // this.type,
  required this.text,
  required this.link,
  this.isRoute = false,
});