Skip to content

Instantly share code, notes, and snippets.

@minikin
Created July 18, 2023 08:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save minikin/a5ecb96a37f2323926681d4e6fd914c9 to your computer and use it in GitHub Desktop.
Save minikin/a5ecb96a37f2323926681d4e6fd914c9 to your computer and use it in GitHub Desktop.
tagged blog on medium
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