By Ryan Aunur Rassyid
Simply create RESTful API with Google Script and store it to Google SpreadSheet like a Pro.
import "dart:io"; | |
List<String> produtos = []; | |
main() { | |
bool condicao = true; | |
while (condicao) { | |
print("==== ADICIONE UM PRODUTO ===="); | |
String text = stdin.readLineSync(); |
import "dart:io"; | |
List<Map<String,dynamic>> cadastros = []; | |
main(){ | |
bool condicao = true; | |
print("\x1B[2J\x1B[0;0H"); | |
while (condicao) { | |
print("==== DIGITE UM COMANDO"); |