Skip to content

Instantly share code, notes, and snippets.

View JoeCodeswell's full-sized avatar

Joe Dorocak aka Joe Codeswell JoeCodeswell

View GitHub Profile
@JoeCodeswell
JoeCodeswell / dartlistInit.dart
Last active July 2, 2020 15:02
DartPad Dart List initialization
// on dartpad: https://dartpad.dev/cfded55df52dd2bb37228d12c7ef049c
void main() {
Co co = Co();
print(co.getTag1()); //Out: profitable
print(co.getMgr1().fn); //Out: null
}
class Co {
List<String> _tags = ['profitable', '1999', 'public', 'NYSE'];
String getTag1() {