RContainer constructor

const RContainer({
  1. Key? key,
  2. double width = 0,
  3. double height = 0,
  4. double radius = 0,
})

Implementation

const RContainer({
  super.key,
  this.width = 0,
  this.height = 0,
  this.radius = 0,
});