center method

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

Implementation

Widget center({
  Key? key,
}) {
  return Center(
    child: this,
    key: key,
  );
}