Skip to content

Instantly share code, notes, and snippets.

@csells
Created December 8, 2021 02:21
Show Gist options
  • Save csells/7510fb15497ad8fe45acbc6babac7b84 to your computer and use it in GitHub Desktop.
Save csells/7510fb15497ad8fe45acbc6babac7b84 to your computer and use it in GitHub Desktop.
@JsonSerializable()
class Person {
Person({required this.name, required this.age});
final String name;
final int age;
}
@Collection<Person>(‘/persons’)
final personsRef = PersonCollectionReference();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment