printAppDetails static method

void printAppDetails(
  1. String type,
  2. String appName,
  3. String appId
)

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');
}