pop function

void pop(
  1. BuildContext context
)

Pop widget from navigation tree

Implementation

void pop(BuildContext context) {
  Navigator.of(context).pop();
}