UriValidator.withMessage constructor

const UriValidator.withMessage({
  1. required String message,
  2. String? path,
  3. String? scheme,
  4. String? host,
  5. int? port,
})

Implementation

const UriValidator.withMessage({
  required String message,
  this.path,
  this.scheme,
  this.host,
  this.port,
}) : super.withMessage(message: message);