IntroductionButtonTextstyles constructor
const
IntroductionButtonTextstyles({ - TextStyle? skipButtonStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w500),
- TextStyle? nextButtonStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w500),
- TextStyle? previousButtonStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w500),
- 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,
),
});