onCancelTap method

void onCancelTap(
  1. BuildContext ctx,
  2. List<T> initiallySelectedValues
)

Pops the dialog from the navigation stack and returns the initially selected values.

Implementation

void onCancelTap(BuildContext ctx, List<T> initiallySelectedValues) {
  Navigator.pop(ctx, initiallySelectedValues);
}