CenterText constructor

const CenterText({
  1. required String text,
  2. bool autofocus = false,
  3. Key? key,
})

Create an instance.

Implementation

const CenterText({
  required this.text,
  this.autofocus = false,
  super.key,
});