LinkData constructor

const LinkData({
  1. required String? label,
  2. bool isUnderline = false,
  3. bool isDisable = false,
})

Implementation

const LinkData({
  required this.label,
  this.isUnderline = false,
  this.isDisable = false,
});