BottomButtonParams constructor

BottomButtonParams({
  1. required String text,
  2. required String color,
  3. required String textColor,
  4. required bool hasShineEffect,
  5. required String position,
  6. bool isVisible = true,
  7. bool isActive = false,
})

Implementation

BottomButtonParams({
  required this.text,
  required this.color,
  required this.textColor,
  required this.hasShineEffect,
  required this.position,
  this.isVisible = true,
  this.isActive = false,
});