Skip to content

Instantly share code, notes, and snippets.

@jodinathan
Created December 13, 2020 20:31
Show Gist options
  • Save jodinathan/58afa45fed1041dbbf46323738de3a99 to your computer and use it in GitHub Desktop.
Save jodinathan/58afa45fed1041dbbf46323738de3a99 to your computer and use it in GitHub Desktop.
extension AdvObj on Object {
bool get isNotNull => this != null;
}
void main() async {
String a;
print(a.isNotNull ? 'not null' : 'null');
a = 'ooooo';
print(a.isNotNull ? 'not null' : 'null');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment