RequestCancelledView constructor

const RequestCancelledView({
  1. dynamic key,
  2. required String sender,
  3. required bool isVerifier,
  4. String? message,
  5. required dynamic onDone(
    1. dynamic
    ),
})

Implementation

const RequestCancelledView({
  super.key,
  required this.sender,
  required this.isVerifier,
  this.message,
  required this.onDone,
});