AppContainerComponent constructor

const AppContainerComponent({
  1. required Widget child,
  2. Key? key,
  3. bool useInBorderRadius = false,
  4. EdgeInsets padding = const EdgeInsets.all(0),
  5. Color? color,
})

Implementation

const AppContainerComponent({
  required this.child,
  super.key,
  this.useInBorderRadius = false,
  this.padding = const EdgeInsets.all(0),
  this.color,
});