ModelHint constructor

ModelHint({
  1. required String name,
  2. String? weight,
})

Implementation

ModelHint({
  required this.name,
  this.weight,
});