import 'package:json_annotation/json_annotation.dart'; part 'debt_person.g.dart'; @JsonSerializable() /// Represents a single person in a debt scenario class DebtPerson { /// Represents a single person in a debt scenario DebtPerson({required this.id, required this.name}); /// Generates a class instance from a Map factory DebtPerson.fromJson(Map json) => _$DebtPersonFromJson(json); /// Converts the data in this instance into a Map Map toJson() => _$DebtPersonToJson(this); /// Unique identifier final int id; /// Identifier that the user will see String name; }