printSS method

void printSS(
  1. String str,
  2. String str2
)

some functions for to print two values

Implementation

void printSS(String str, String str2) {
  print(str + '  ' + str2);
}