RoundButtonView constructor

RoundButtonView({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. double reversePlusDistance = 20,
  5. required TextSpan buttonText,
  6. Duration plusDuration = const Duration(milliseconds: 300),
  7. Color buttonColor = const Color(0xFF42bcb6),
  8. double plusDistance = 4,
  9. double borderThickness = 2,
  10. Duration reversePlusDuration = const Duration(milliseconds: 1500),
})

Implementation

RoundButtonView({
  Key? key,
  this.width,
  this.height,
  this.reversePlusDistance = 20,
  required this.buttonText,
  this.plusDuration = const Duration(milliseconds: 300),
  this.buttonColor = const Color(0xFF42bcb6),
  this.plusDistance = 4,
  this.borderThickness = 2,
  this.reversePlusDuration = const Duration(milliseconds: 1500),
}) : super(key: key);