confirmation static method
Implementation
static Future<bool> confirmation(
String scope, String action, String message, String question) async {
Show.pleaseConfirm(scope, action, message, question);
var confirmation = await prompt('CONFIRMATION');
return confirmation.toLowerCase() == 'y' ||
confirmation.toLowerCase() == 'yes';
}