LoadingScreen constructor

const LoadingScreen({
  1. Key? key,
  2. required String title,
  3. required String subtitle,
})

Implementation

const LoadingScreen({Key? key, required this.title, required this.subtitle})
    : super(key: key);