NeoBorderContainer constructor

const NeoBorderContainer({
  1. Key? key,
  2. required Widget child,
  3. double height = 40,
  4. double? width,
  5. bool hasHardShadow = false,
})

Implementation

const NeoBorderContainer({
  Key? key,
  required this.child,
  this.height = 40,
  this.width,
  this.hasHardShadow = false,
}) : super(key: key);