Skip to content

Instantly share code, notes, and snippets.

@vbalagovic
Created November 28, 2024 17:30
Show Gist options
  • Save vbalagovic/8cb869d4cddc60dda502fe29a1ec1981 to your computer and use it in GitHub Desktop.
Save vbalagovic/8cb869d4cddc60dda502fe29a1ec1981 to your computer and use it in GitHub Desktop.
@freezed
class Movie with _$Movie {
const factory Movie({
required String id,
required String title,
required String year,
required String plot,
String? poster,
}) = _Movie;
factory Movie.fromJson(Map<String, dynamic> json) => _$MovieFromJson(json);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment