GoBackButton constructor

const GoBackButton({
  1. required String title,
  2. required void function(),
  3. Key? key,
})

Implementation

const GoBackButton({
  required this.title,
  required this.function,
  super.key,
});