BackDropScreen constructor

const BackDropScreen({
  1. required Widget bottomChild,
  2. required Widget backgroundChild,
  3. double topPadding = 500,
  4. Key? key,
})

Implementation

const BackDropScreen({
  required this.bottomChild,
  required this.backgroundChild,
  this.topPadding = 500,
  Key? key,
}) : super(key: key);