RequestCreatedView constructor

const RequestCreatedView({
  1. dynamic key,
  2. required dynamic onCancel(
    1. dynamic
    ),
})

Implementation

const RequestCreatedView({
  super.key,
  required this.onCancel,
});