DeviceTypeLayout constructor

const DeviceTypeLayout({
  1. Key? key,
  2. required Widget mobile(),
  3. required Widget web(),
})

Implementation

const DeviceTypeLayout({
  Key? key,
  required this.mobile,
  required this.web,
}) : super(key: key);