RoughMobileLayout constructor

const RoughMobileLayout({
  1. Key? key,
  2. required Widget child,
  3. Widget? mobileChild,
})

Implementation

const RoughMobileLayout({
  super.key,
  required this.child,
  this.mobileChild,
});