ModulaCenter constructor

const ModulaCenter({
  1. required Widget child,
  2. Key? key,
  3. double? widthFactor,
  4. double? heightFactor,
})

Implementation

const ModulaCenter({
  required this.child,
  super.key,
  this.widthFactor,
  this.heightFactor,
});