NeoContainer constructor

const NeoContainer({
  1. Key? key,
  2. required Widget child,
  3. Color? backgroundColor,
  4. Color shadowColor = Colors.black,
  5. Offset offset = const Offset(3, 3),
  6. double borderRadius = 8.0,
})

Implementation

const NeoContainer({
  super.key,
  required this.child,
  this.backgroundColor,
  this.shadowColor = Colors.black,
  this.offset = const Offset(3, 3),
  this.borderRadius = 8.0,
});