Skip to content

Instantly share code, notes, and snippets.

@iinozemtsev
Last active August 14, 2023 10:01
Show Gist options
  • Save iinozemtsev/96ff419e9a3b850a2ec794c64918951c to your computer and use it in GitHub Desktop.
Save iinozemtsev/96ff419e9a3b850a2ec794c64918951c to your computer and use it in GitHub Desktop.
class Node<T> {
T? value;
}
T? lastEventData<T>(Node<T> node) => node.value;
void main() async {
print(lastEventData(Node<int>()));
print(lastEventData(Node<int?>()));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment