Limit constructor

Limit(
  1. int amount,
  2. int? offset
)

Construct a limit clause from the amount of rows to include an a nullable offset.

Implementation

Limit(this.amount, this.offset);