Example constructor

Example({
  1. String? name,
  2. String? sourceText,
  3. String? targetText,
  4. String? usage,
})

Implementation

Example({
  this.name,
  this.sourceText,
  this.targetText,
  this.usage,
});