Simulate constructor

const Simulate({
  1. Key? key,
  2. required GeneralLibFlutterApp generalLibFlutterApp,
  3. bool isShowExperimental = false,
  4. EdgeInsets? paddingFrame,
  5. GlobalKey<State<StatefulWidget>>? allBodyKey,
  6. GlobalKey<State<StatefulWidget>>? frameBodyKey,
  7. required Widget home,
  8. Widget customView(
    1. BuildContext context,
    2. Widget home,
    3. DeviceInfo deviceInfo
    )?,
  9. DeviceInfo? deviceDefault,
  10. bool isShowFrame = kDebugMode,
  11. bool isShowTopFrame = true,
})

Implementation

const Simulate({
  super.key,
  required this.generalLibFlutterApp,
  this.isShowExperimental = false,
  this.paddingFrame,
  this.allBodyKey,
  this.frameBodyKey,
  required this.home,
  this.customView,
  this.deviceDefault,
  this.isShowFrame = kDebugMode,
  this.isShowTopFrame = true,
});