Skip to content

Instantly share code, notes, and snippets.

@marcossevilla
Created January 25, 2021 20:45
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 marcossevilla/04806ba041bfb6c03f2bbd2d2f0e154b to your computer and use it in GitHub Desktop.
Save marcossevilla/04806ba041bfb6c03f2bbd2d2f0e154b to your computer and use it in GitHub Desktop.
import 'package:freezed_annotation/freezed_annotation.dart';
part 'user.freezed.dart';
@freezed
abstract class User with _$User {
factory User({@required String name, @required int age}) = _User;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment