ElevatedBox constructor

const ElevatedBox({
  1. required Widget child,
  2. double elevation = 1,
  3. Offset? offset = Offset.zero,
  4. Color? shadowColor = const Color(0x33000000),
  5. BoxDecoration decoration = const BoxDecoration(),
  6. BoxBorder? border,
  7. Key? key,
})

Implementation

const ElevatedBox({
  required this.child,
  this.elevation = 1,
  this.offset = Offset.zero,
  this.shadowColor = const Color(0x33000000),
  this.decoration = const BoxDecoration(),
  this.border,
  super.key,
});