whereInt method

Router whereInt(
  1. String paramName
)

Implementation

Router whereInt(String paramName) {
  if (_routes.isNotEmpty) {
    _routes.last.paramTypes ??= {};
    _routes.last.paramTypes![paramName] = int;
  }
  return this;
}