Line data Source code
1 : class InAppUserEntity { 2 : String id; 3 : String inAppId; 4 : bool disabledHelpers; 5 : bool anonymous; 6 : 7 2 : InAppUserEntity( 8 : {this.id, this.inAppId, this.disabledHelpers, this.anonymous}); 9 : 10 1 : Map<String, dynamic> toJson() { 11 1 : return { 12 1 : "id": this.id, 13 1 : "inAppId": this.inAppId, 14 1 : "disabledHelpers": this.disabledHelpers, 15 1 : "anonymous": this.anonymous, 16 : }; 17 : } 18 : }