FileValidation constructor

const FileValidation({
  1. String? errorCode,
  2. List<String>? whereExtensionIn,
  3. List<String>? whereExtensionNotIn,
})

Implementation

const FileValidation({
  String? errorCode,
  this.whereExtensionIn,
  this.whereExtensionNotIn,
}) : super(errorCode);