MainPage constructor

const MainPage({
  1. required String title,
  2. Key? key,
})

Application's entry-point with custom title.

Implementation

const MainPage({required String title, Key? key})
    : _title = title,
      super(key: key);