AppLayout constructor

const AppLayout(
  1. {Key? key,
  2. required Widget page,
  3. AppLayoutType type = AppLayoutType.gray}
)

Implementation

const AppLayout({
  super.key,
  required this.page,
  this.type = AppLayoutType.gray,
});