UserRejectException constructor

const UserRejectException({
  1. String message = 'User rejected the request.',
})

Constructor.

Implementation

const UserRejectException({
  String message = 'User rejected the request.',
}) : super(4001, message, null);