PinCreationScreen constructor

const PinCreationScreen({
  1. Key? key,
  2. required String appName,
  3. required dynamic onPinSubmit(
    1. String
    ),
  4. required Color accentColor,
  5. bool darkMode = false,
})

Implementation

const PinCreationScreen({
  Key? key,
  required this.appName,
  required this.onPinSubmit,
  required this.accentColor,
  this.darkMode = false,
}) : super(key: key);