getInt method
Get request int value
Implementation
int getInt() => int.tryParse(uri.pathSegments.last) == null ? 0 : int.parse(uri.pathSegments.last);
Get request int value
int getInt() => int.tryParse(uri.pathSegments.last) == null ? 0 : int.parse(uri.pathSegments.last);