KIDeviceWidget constructor

KIDeviceWidget({
  1. Key? key,
  2. Widget mobile(
    1. BuildContext context
    )?,
  3. Widget desktop(
    1. BuildContext context
    )?,
  4. Widget browser(
    1. BuildContext context
    )?,
  5. required Widget child(
    1. BuildContext context
    ),
})

Implementation

KIDeviceWidget({
  Key? key,
  this.mobile,
  this.desktop,
  this.browser,
  required this.child,
}) : super(key: key);