Scaffold constructor

const Scaffold({
  1. Key? key,
  2. required Widget body,
})

Implementation

const Scaffold({
  Key? key,
  required this.body,
}) : super(key: key);