Name constructor

const Name({
  1. String value = '',
  2. ChangeCaseType? caseType,
  3. String? separator,
  4. bool isPrivate = false,
})

Implementation

const Name({
  this.value = '',
  this.caseType,
  this.separator,
  this.isPrivate = false,
});