center method

Widget center()

Wraps the widget in a Center. Example: Text('Hello').center()

Implementation

Widget center() => Center(child: this);