IntroductionButtonTextstyles constructor

const IntroductionButtonTextstyles({
  1. TextStyle? skipButtonStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w500),
  2. TextStyle? nextButtonStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w500),
  3. TextStyle? previousButtonStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w500),
  4. TextStyle? finishButtonStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w500),
})

Implementation

const IntroductionButtonTextstyles({
  this.skipButtonStyle = const TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w500,
  ),
  this.nextButtonStyle = const TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w500,
  ),
  this.previousButtonStyle = const TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w500,
  ),
  this.finishButtonStyle = const TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.w500,
  ),
});