WrapperContainer constructor

const WrapperContainer({
  1. Key? key,
  2. required Widget child,
})

Constructor for the Widget

Implementation

const WrapperContainer({
  Key? key,
  required this.child,
}) : super(key: key);