JwtResponseError constructor

JwtResponseError({
  1. required bool isSuccess,
  2. required String message,
  3. required String? stacktrace,
})

Implementation

JwtResponseError({
  required this.isSuccess,
  required this.message,
  required this.stacktrace,
});