askInt static method
Implementation
static Future<int> askInt(
String question, {
required int defaultValue,
int? min,
int? max,
}) =>
InputPrompt.askInt(question, defaultValue: defaultValue, min: min, max: max);
static Future<int> askInt(
String question, {
required int defaultValue,
int? min,
int? max,
}) =>
InputPrompt.askInt(question, defaultValue: defaultValue, min: min, max: max);