center method

Center center({
  1. Key? key,
  2. double? wFactor,
  3. double? hFactor,
})

see Center

Implementation

Center center({Key? key, double? wFactor, double? hFactor}) => Center(
      key: key,
      widthFactor: wFactor,
      heightFactor: hFactor,
      child: this,
    );