Plot constructor

Plot(
  1. String owner,
  2. int size,
  3. int quality
)

Implementation

Plot(this.owner, this.size, this.quality) {
  if (size <= 0) throw ArgumentError('size>0');
}