Align constructor

const Align({
  1. Key? key,
  2. required Alignment alignment,
  3. Widget? child,
})

Creates an Align widget with the given alignment.

Implementation

const Align({super.key, required this.alignment, super.child});