InvalidInputException constructor

InvalidInputException({
  1. int? code,
  2. String? message,
})

Implementation

InvalidInputException({
  this.code,
  this.message,
});