Created
July 18, 2023 08:34
-
-
Save minikin/a5ecb96a37f2323926681d4e6fd914c9 to your computer and use it in GitHub Desktop.
tagged blog on medium
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class User{ | |
final String id; | |
final String name; | |
final String email; | |
final String? subscriptionId; | |
const User( | |
this.subscriptionId, { | |
required this.id, | |
required this.name, | |
required this.email, | |
}); | |
} | |
class Subscription { | |
final String id; | |
const Subscription({ | |
required this.id, | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment