Skip to content

Instantly share code, notes, and snippets.

@f3ath
Created December 13, 2019 07:00
Show Gist options
  • Save f3ath/baca950de765a24aeef2fdc61f76fbef to your computer and use it in GitHub Desktop.
Save f3ath/baca950de765a24aeef2fdc61f76fbef to your computer and use it in GitHub Desktop.
Dart extenston on typedef
extension Nullable<U, V> on _Fun<U, V> {
U nullable(V v) => v == null ? null : this(v);
}
typedef U _Fun<U, V>(V v);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment