Skip to content

Instantly share code, notes, and snippets.

@ecstatic-morse
Last active December 11, 2023 04:03
Show Gist options
  • Save ecstatic-morse/7eb4cba1572e3873e92e58555aa945bd to your computer and use it in GitHub Desktop.
Save ecstatic-morse/7eb4cba1572e3873e92e58555aa945bd to your computer and use it in GitHub Desktop.
extension type Id(int id) {}
class MaybeId {
final Id? value;
const MaybeId.none() : value = null;
}
const MaybeId no = MaybeId.none();
void main() {
print(no);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment