AurisPanel constructor

const AurisPanel({
  1. Key? key,
  2. required String title,
  3. required Widget child,
  4. String? code,
  5. bool accent = false,
  6. EdgeInsetsGeometry padding = const EdgeInsets.all(16),
})

Creates a titled panel.

Implementation

const AurisPanel({
  super.key,
  required this.title,
  required this.child,
  this.code,
  this.accent = false,
  this.padding = const EdgeInsets.all(16),
});