class CustomerMembership { late int membershipId; late int customerId; late DateTime startDate; CustomerMembership.fromJson(Map json) { membershipId = json['membershipId']; customerId = json['customerId']; startDate = json['startDate']; } Map toJson() => { "membershipId": membershipId, "customerId": customerId, "startDate": startDate, }; @override String toString() => toJson().toString(); }