I don't understand the issue with the following Code and would love to hear some ideas on how to solve my problem
Code:
class SplashContent extends StatelessWidget {
const SplashContent({
Key? key,
this.text,
this.image,
}) : super(key: key);
final String text, image;