NameAndKind constructor

NameAndKind({
  1. String? kind,
  2. String? name,
})

Implementation

NameAndKind({
  this.kind,
  this.name,
});