NetworkCaptureApp constructor

NetworkCaptureApp({
  1. required Widget child,
  2. required GlobalKey<NavigatorState> navigatorKey,
  3. bool enable = false,
  4. Size designSize = const Size(375, 667),
  5. Key? key,
})

Implementation

NetworkCaptureApp({
  required this.child,
  required this.navigatorKey,
  this.enable = false,
  this.designSize = const Size(375, 667),
  super.key,
}) {
  ncEnable = enable;
}