SplitFlapRow constructor

const SplitFlapRow({
  1. Key? key,
  2. required String text,
  3. int maxLength = 10,
  4. double unitWidth = 20,
  5. double unitHeight = 34,
  6. double spacing = 2,
  7. Color flapColor = const Color(0xFF161616),
  8. Color textColor = Colors.white,
  9. Duration flipDuration = const Duration(milliseconds: 75),
  10. bool silent = false,
})

Implementation

const SplitFlapRow({
  super.key,
  required this.text,
  this.maxLength = 10,
  this.unitWidth = 20,
  this.unitHeight = 34,
  this.spacing = 2,
  this.flapColor = const Color(0xFF161616),
  this.textColor = Colors.white,
  this.flipDuration = const Duration(milliseconds: 75),
  this.silent = false,
});