RoundedContainer constructor

const RoundedContainer(
  1. {Key? key,
  2. Widget? child,
  3. Color color = Colors.white,
  4. double circularRadius = 20,
  5. double margin = 20,
  6. double padding = 20}
)

Implementation

const RoundedContainer(
    {Key? key,
    this.child,
    this.color = Colors.white,
    this.circularRadius = 20,
    this.margin = 20,
    this.padding = 20})
    : super(key: key);