MaterialForesApp constructor

const MaterialForesApp({
  1. Key? key,
  2. required Map<String, Widget> routes,
  3. required Size designSize,
  4. String? title,
})

Implementation

const MaterialForesApp({
  super.key,
  required this.routes,
  required this.designSize,
  this.title,
});