printAppDetails static method
Prints app and package details for Android and iOS in a formatted and colorful manner.
Implementation
static void printAppDetails(String type, String appName, String appId) {
// Android section
stdout.writeln('${yellow}$type Details:$reset');
stdout.writeln('\tApp Name:\t\t${green}$appName$reset');
stdout.writeln('\t App ID:\t\t${blue}$appId$reset');
}