CLinkProps constructor

CLinkProps({
  1. required String? caption,
  2. required String url,
  3. required double fontSize,
  4. required bool enable,
  5. required void onTap(
    1. String url
    ),
})

Implementation

CLinkProps({
  required this.caption,
  required this.url,
  required this.fontSize,
  required this.enable,
  required this.onTap,
});