PlantBasic constructor

PlantBasic({
  1. int? id,
  2. String? name,
})

Returns a new PlantBasic instance.

Implementation

PlantBasic({
  this.id,
  this.name,
});