buildLeading method

  1. @override
Widget buildLeading(
  1. BuildContext context
)
override

Implementation

@override
Widget buildLeading(BuildContext context) {
  return IconButton(
    icon: const Icon(Icons.arrow_back),
    onPressed: () => close(context, null),
  );
}