RemoteValidator constructor

RemoteValidator({
  1. required String endpoint,
  2. Map<String, String>? headers,
  3. String? fieldName,
  4. String? message,
  5. int debounceMilliseconds = 500,
})

Implementation

RemoteValidator({
  required this.endpoint,
  this.headers,
  this.fieldName,
  this.message,
  super.debounceMilliseconds,
});