WordTense constructor

WordTense({
  1. String? type,
  2. String? name,
  3. List<String>? values,
})

Implementation

WordTense({
  this.type,
  this.name,
  this.values,
});