ButtonModel constructor

ButtonModel({
  1. required String label,
  2. required String link,
  3. String? linkId,
  4. int? deepLinkType,
  5. required String color,
  6. required String textColor,
})

Implementation

ButtonModel({
  required this.label,
  required this.link,
  this.linkId,
  this.deepLinkType,
  required this.color,
  required this.textColor,
});