NesSectionHeader constructor

const NesSectionHeader({
  1. required String title,
  2. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  3. Key? key,
})

An opninated section header for the NES UI. Consists of a title and a Divider

Implementation

const NesSectionHeader({
  required this.title,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  super.key,
});