SpaceJamContainer constructor

const SpaceJamContainer({
  1. required String title,
  2. required Widget child,
  3. Color? backgroundColor,
  4. DecorationImage? backgroundImage,
  5. Key? key,
})

Constructor

Implementation

const SpaceJamContainer({
  required this.title,
  required this.child,
  this.backgroundColor,
  this.backgroundImage,
  Key? key,
}) : super(key: key);