cancelAction method

Widget cancelAction(
  1. String label, {
  2. Color? color,
})

Implementation

Widget cancelAction(String label, {Color? color}) {
  return makeAction(label, () => globalContext.maybePop(), color: color);
}