Limit constructor

Limit({
  1. int? max,
  2. String? type,
})

Implementation

Limit({
  this.max,
  this.type,
});