center method

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

Implementation

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