TPageWrapper constructor

const TPageWrapper({
  1. Key? key,
  2. required Widget child,
  3. String? title,
  4. VoidCallback? onBackPressed,
  5. List<Widget>? actions,
})

Creates a page wrapper.

Implementation

const TPageWrapper({
  super.key,
  required this.child,
  this.title,
  this.onBackPressed,
  this.actions,
});