How to define a Stack in dartPad?

https://dartpad.dev/? import ‘package:starter/stack.dart’; void main() { print (calculation("(2+2*6")); } calculation(expression){ var tokens = expression.split(" "); Stack values = Stack(); Stack ops = Stack(); } note that if I remove the import (first line) I get this error message "The function ‘Stack’ isn’t defined." and when I add the import the error message is "Unsupported import(s):… Read More How to define a Stack in dartPad?