Name constructor

const Name({
  1. int? charCount,
  2. int? minChar = 0,
  3. int? maxChar = 0,
  4. String? startWith = '',
  5. String? endWith = '',
  6. String? contains = '',
  7. TextCase? textCase,
  8. Gender? gender,
})

Implementation

const Name({
  this.charCount,
  this.minChar = 0,
  this.maxChar = 0,
  this.startWith = '',
  this.endWith = '',
  this.contains = '',
  this.textCase,
  this.gender,
});