makeCentered method

Widget makeCentered({
  1. Key? key,
})

Extension method to directly access Center with any Vx widget without wrapping or with dot operator.

Implementation

Widget makeCentered({Key? key}) => Center(key: key, child: make());