SplitScreen constructor

const SplitScreen({
  1. Key? key,
  2. required Widget leftChild,
  3. required Widget rightChild,
  4. Gradient? gradient,
  5. Widget? footer,
  6. Color? backgroundColor,
  7. double? logoHeight,
  8. EdgeInsetsGeometry? logoPadding,
  9. double? footerHeight,
})

Implementation

const SplitScreen({
  Key? key,
  required this.leftChild,
  required this.rightChild,
  this.gradient,
  this.footer,
  this.backgroundColor,
  this.logo,
  this.lightLogo,
  this.logoHeight,
  this.logoPadding,
  this.footerHeight,
}) : super(key: key);