TekioButtonData constructor

TekioButtonData({
  1. int? order,
  2. String? buttonKey,
  3. String? iconCode,
  4. String? imageUrl,
  5. String? label,
  6. required String navPath,
})

Implementation

TekioButtonData({
  this.order,
  this.buttonKey,
  this.iconCode,
  this.imageUrl,
  this.label,
  required this.navPath,
});