RoundedContainerWidget constructor

const RoundedContainerWidget({
  1. Key? key,
  2. required Widget child,
  3. double radius = 12,
  4. double padding = 16,
  5. Color color = RoomColors.lightGrey,
  6. double? width,
  7. double? height,
})

Implementation

const RoundedContainerWidget({
  super.key,
  required this.child,
  this.radius = 12,
  this.padding = 16,
  this.color = RoomColors.lightGrey,
  this.width,
  this.height,
});