cancel property

Widget get cancel

Implementation

Widget get cancel {
  return InkWell(
    child: Text(tr("submit.cancel")),
    onTap: () {
      Navigator.pop(context);
    },
  );
}