UpConfig constructor

const UpConfig({
  1. Key? key,
  2. required UpThemeData theme,
  3. required UpAppState flutterUp,
  4. required dynamic child,
})

Implementation

const UpConfig({
  Key? key,
  required this.theme,
  required this.flutterUp,
  required child,
}) : super(key: key, child: child);