MainScreen constructor

const MainScreen({
  1. Key? key,
  2. Widget? leftChild,
  3. required Widget rightChild,
})

Implementation

const MainScreen({
  Key? key,
  this.leftChild,
  required this.rightChild,
}) : super(key: key);